Mirando el código creo que lo tengo bien, vaya, al menos si nos estamos refiriendo a lo mismo
GatorV. He entendido que te referias si al principio del form, habia declarado el method="POST", si es asi, si que lo habia echo. Entonces, partiendo de aquí, sigo sin saber cómo tengo que solucionar el problema con los undefined index. Me falta algo de código?
El código del formulario que tengo es el siguiente:
Código PHP:
Ver original<html>
<head>
<title>Video Upload con PHP | COLORATE</title>
<link rel
="stylesheet" href
="estilo.css" type
="text/css" media
="screen" /> </head>
<body>
<div id="container">
<div id="top">
<h1>UPLOAD VIDEO EN PHP | COLORATE</h1>
</div>
<div id="leftSide">
<fieldset>
<legend>Upload Video</legend>
<form action="validar.php" method="POST" class="form" enctype="multipart/form-data">
<!-- CLIENTE -->
<label for="cliente">Cliente</label>
<div class="div_texbox">
<input name="cliente" type="text" class="username" id="cliente" />
</div>
<!-- TITULO -->
<label for="name">Título</label>
<div class="div_texbox">
<input name="title" type="text" class="username" id="title" />
</div>
<!-- DIRECTOR -->
<label for="username">Director</label>
<div class="div_texbox">
<input name="director" type="text" class="username" id="director" />
</div>
<!-- SELECCIONAR FICHERO -->
<label for="username">Video (.mov)</label>
<div class="div_texbox">
<input type="file" name="video" class="username" tabindex="3" />
</div>
<!-- BOTON ENVIAR -->
<div class="button_div">
<input name="submit" type="submit" value="Enviar" class="buttons" onclick="javascript:bar1.showBar()" />
</div>
<input name="action" type="hidden" value="upload" />
</form>
</fieldset>
</div>
</div> <!-- Cierra Container -->
</body>
</html>
Grácias por vuestro tiempo :)