Question
php brain teaser
Looking to create a multiple user login where the script that is used to check the username/password, and ultimately the url they are sent to, is based on the radio button they select. Any ideas?
Form:
<form name="form1" method="post" action="logon.php">
<label> Username: <input name="username" type="text" id="username" size="15"></label>
<label> Password: <input name="password" type="password" id="password" size="15"></label>
<label><input type="radio" name="logintype" value="jobseeker"></label><label><input type="radio" name="logintype" value="employer"></label>
<input name="login" type="image" src="button.png" id="login" value="login"></div>
</form>
