A
Anonymous
Guest
:?:
Hello
I try to upload file but ...
Here my form :
<form method="post" enctype="multipart/form-data" action="uploadtst.php">
<INPUT TYPE="hidden" name="MAX_FILE_SIZE" value="1000">
<input type="file" name="userfile">
<input type="submit">
</form>
in this part of code
<?
if (is_uploaded_file($userfile)) {
move_uploaded_file($userfile, "/place/file.new");
}
?>
I never reach into the if condition and so I can't make the move.
Can you help me ?
Thanks
Cordially
Stéphane Vauclaire
Hello
I try to upload file but ...
Here my form :
<form method="post" enctype="multipart/form-data" action="uploadtst.php">
<INPUT TYPE="hidden" name="MAX_FILE_SIZE" value="1000">
<input type="file" name="userfile">
<input type="submit">
</form>
in this part of code
<?
if (is_uploaded_file($userfile)) {
move_uploaded_file($userfile, "/place/file.new");
}
?>
I never reach into the if condition and so I can't make the move.
Can you help me ?
Thanks
Cordially
Stéphane Vauclaire