I'm Supposed to click on a button, Then it will redirect to a form page and fill up a particular details. I must obtain this data and store it locally using either session objects or cookies.
Button code:
<form action="Enquiry.html" method="get">
<button class="button1" id="CreamLx">Book Now!</button>
</form>
Form Page:
<form method="post" action="" class="form1">
<p>
<label for="Products">Products</label>
</p>
<select name="Products" id="Products" required="required">
<option value="">Please Select</option>
<option value="Cream1">Creamy</option>
</form>
So basically when I click the button it should go to the form page and select the creamy under the for products.How should I do?