in page1.html
<input type=file name=filename>
<input type=submit name=submit>
whenever i submit page1.html
filename will pass to page2.php dropdown box
<select name="mydropdown">
<option value="filenamefrompage1.html">....</option>
</select>
and i can have multiple files in the dropdown since every entry from page1 will pass to page2.
now i want my php page to retrieve all value in page2.php "mydropdown" (or all options in the select box)
is that clearer?
thx for your reply