This should be very simple but it isn't working.

upload.html has this:
<form action="upload2.php" method="POST"
enctype="multipart/form-data">

<input type="file" name="userfile">
<input type="submit" name="submit" value="submit">
</form>

and 

upload2.php has this:
<?php

echo("in post");
 
echo($_POST['userfile]);

?>


Where is the file??

Thanks


__________________________________________________
Do You Yahoo!?
Yahoo! Finance - Get real-time stock quotes
http://finance.yahoo.com

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

Reply via email to