I have a simple form like this:
<form method=POST>
File Type: <select name="ftype" size="1">
<option value="0">Choose...</option>
<option value="1">Image</option>
<option value="2">Website</option>
<option value="3">Flash</option>
</select><br></form>
And a simple link like this:
<? echo"<a href=\"upload2.php?ftype=$ftype\">Next</a><br>";
My question is, why can't the link grab the form data for $ftype and post it to the URL? It always shows up as 'upload2.php?ftype=" The same thing as if I were to make it a submit button, but I'd rather use a link.
Thanks!