lo que pasa es que tengo este codigo html
Código HTML:
<form id="form1" name="form1" method="post" action="upload.php"> <table width="261" border="0"> <tr> <td width="255"><label> <input type="file" name="file" /> </label></td> </tr> <tr> <td><label> <input type="submit" name="Submit" value="Upload!!" /> </label></td> </tr> </table> </form>
Código PHP:
<?php
$destino = 'nombre de carpeta' ;
$archivo = $_FILES['file']['name'];
$url = "http://tudominio.com/$destino/imagenes_productos/$archivo";
move_uploaded_file ( $_FILES [ 'file' ][ 'tmp_name' ], $destino . '/' . $_FILES [ 'file' ][ 'name' ]);
?>