Hello there,
I just need the option chosen in another php file.
i have the following peice of code in my index.php
<select id="papertype" name="papertype">
<option value= "0">Gloss</option>
<option value= "1">Gloss</option>
</select>
i need the chosen option in the details.php file (this doesn't work but here is what im using to try and call)
$desc= $_POST ['papertype'];
Thanks