Reputation: 11
I am working on a contact form for someone and they want a drop down menu added that based off of what they choose on that menu, is where the form will go.
Example: Drop down Menu options are:
General Inquiry goes to [email protected]
Press goes to [email protected]
Booking goes to [email protected]
I have no idea how to set the PHP up for this.
Upvotes: 0
Views: 42
Reputation: 299
better way would be using Javascript and adding an eventlistener on change of the drop down menu where it will take you to the link
<select id="select">
<option value="google.com">Google.com</option>
</select>
<script>
const select = document.querySelector('#select')
select.addEventListener('change', (e) => {
window.location.href = select.value;
}
</script>
something like this
Upvotes: 1