Lets say I got 4 buttons like this, which all sends me to another page:
<a href = "room.php">
<button>Click me1</button>
</a>
<a href = "room.php">
<button>Click me2</button>
</a>
<a href = "room.php">
<button>Click me3</button>
</a>
<a href = "room.php">
<button>Click me4</button>
</a>
The next page (room.php) has a select tag which contains 4 different option values.
<select name ="room">
<option value="Room1">Room 1</option>
<option value="Room2">Room 2</option>
<option value="Room3">Room 3</option>
<option value="Room4">Room 4</option>
</select>
My question is if I can preselcect Room 3 if button nr 3 is pressed and room 4 if button 4 is pressed and so on...