I'm having the hardest time trying to get my input type='file' box to echo out the value when I hit the submit button. I have the following
<TD><p align=right><INPUT TYPE='TEXT' SIZE='35' VALUE= 'Title Of The File (Link Text)' NAME='File1_Title'></TD>
<TD><p align=left><INPUT TYPE='File' SIZE='30' NAME='File1'></TD>
and when I hit the submit button
if (((isset($_POST["submit"])) && ($_POST["submit"] == "Submit")))
I can echo out the text box with no problems
echo $_POST["File1_Title"]."<BR>";
but when I try and echo out the value from the file box it comes up blank
echo $_POST["File1"]."<BR>";
what am I missing here?