no sé que me pasa pero no veo el error:
Tengo el siguiente formulario, de aquí solo interesa el input file.
<form action="./tiposServicio_.php" method="POST" enctype="multiform/form-data">
Nombre: <input type="text" id="titulo" name="titulo" size="33"> Url: <input type="text" id="url" name="url" size="45"><br><br>
Imagen:  <input type="file" id="imagen" name="imagen"><br><br>
Tipo de servicio:
<select name="tiposervicio">
<?
tipoServicio();
?>
</select><br><br>
Descripcion:<br><div id="fckeditor" name="fckeditor" style="position:relative;height:600px;width:600px;">
<input id="FCKeditor1" name="FCKeditor1" value="" style="display: none;" type="hidden"><input id="FCKeditor1___Config" value="" style="display: none;" type="hidden"><iframe style="position: absolute; z-index: 10000;" src="javascript:void(0)" scrolling="no" width="0" frameborder="0" height="0"></iframe><iframe id="FCKeditor1___Frame" src="/FCKeditor/editor/fckeditor.html?InstanceName=FCKeditor1&Toolbar=Default" scrolling="no" width="100%" frameborder="0" height="200px"></iframe></div><br>
<div style="position:absolute;left:553px;top:140px;"><input type="submit" value="insertar" name="insertar"></div>
</form>
después con este trozo de código estoy haciendo la traza
$imagen=$_FILES['imagen']['name'];
print_r($_POST);
echo "<br>";
print_r($HTTP_POST_FILES);
print_r($_FILES);
echo "hola<br>";
echo $imagen;
el print_r de $_POST va perfecto, el resto me saca valores vacíos:
//RESULTADO
Array
(
[titulo] => adawqweqweqe
[url] => qweqweqweq.com
[imagen] => calendario2009_espiral.png
[tiposervicio] => 0
[FCKeditor1] => qweqweqwe<br>
[insertar] => insertar
)
<br>Array
(
)
Array
(
)
hola
Alguien es capaz de ver porque no se sube la imagen, ni el nombre de la imagen en el $_FILES?