I want to pass from page1.html the selected value to the next page2.html Page1.html :
<form action="product.php" method="POST">
<select name="option">
<option value="product">product</option>
<option value="event">event</option>
<option value="organization">organization</option>
<option value="movie">movie</option>
<option value="book">book</option>
<option value="review">review</option>
<option value="recipe">recipe</option>
</select>
<input type="submit" name="submit" value="GO"/>
</form>
How can I create a var that will recieve the selected option on Page2.html using POST method?
Thanks, Ofer