Hello everybody,


I want to allow the client to upload a text file on my web server, so I use
this code :

<html>
<head></head>
<body>
Uploaded files details<br>

<?php
printf("Name : %s <br>", $HTTP_POST_FILES["userfile"]["name"]);
printf("Temporary Name : %s <br>",
$HTTP_POST_FILES["userfile"]["tmp_name"]);
printf("Size : %s <br>", $HTTP_POST_FILES["userfile"]["size"]);
printf("Type : %s <br>", $HTTP_POST_FILES["userfile"]["type"]);

if (copy
($HTTP_POST_FILES["userfile"]["tmp_name"],"temp/".$HTTP_POST_FILES["userfile
"]["name"]))
{
        printf("File successfully copied");}
else{
        printf("Error: failed to copy file");}  


?>

</body>
</html>

the $http_post_files doesn't return me anything, anybody would have a clue
?? ( roughly speaking I am not able to retrieve the field the client try to
send me).

Thanks a lot.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to