I am an ignorant man in search of information, and perhaps knowledge. This script works just fine:
echo '<form action="image_upload.php" method="post" enctype="multipart/form-data">';
echo 'Click the Browse button to find the file you wish to upload';
echo '<input type="file" name="imagefile">';
echo '<INPUT TYPE="submit" name="upload" value="upload">';
echo '</form>';
After the word '...upload' there's a textfield that's populated via clicking the "Browse..." button that follows it.
My question: how does this script DO that??
Thanks,
- Paul