I have a drop down menu in HTML that asks the user to choose whether they want to be directed to the user feedback form or the user help form. I need to use the get method and PHP to dynamically redirect the user to the form of their choice.
<!-- Div for drop down menu -->
<div class="dropDown">
<select id="select" onclick="myFunction">
<form method="get" action="assignment5-2.php" name="dropDown">
<option disabled selected>Choose to fill out help form or general feedback form please.</option>
<option id="user" value="user">User Feedback Form</option>
<option id="value" value="help">User Help Form</option>
</select>
<input type="button" value="Go" onclick="myFunction()">
</div>