I have a dropdown list of users from my database, then at the last row I want to make a static option to create a new user and redirect the user to another page,
Tried to post the link in value, or enter in <a>
tags or add an href
, but with no success.
<label for="cars">Assign to:</label>
<select id="cars" name="assignTo" required>
<option value=""></option>
<option value="Jey">Jey</option>
<option value="Mike">Mike</option>
<option value="Moses">Moses</option>
<option value="Joe">Joe</option>
<option value="" href="/add-user.php">Add new user</option>
</select>