Squall, it's obvious javascript is the only thing that will work here. He's given plenty enough details.
Anyway it's javascript, html won't do it, and neither will a server-side language. Actually it would if you redirected... but why would you bothe rdoing that.
btw <script>
document.login_form.user.focus();
</script> makes it so that the typing thingy goes straight to the form.
--------------
im too lazy to make the code work
basically it's like this
<script type="text/javascript">
function set_target() {
var username, password, servername, login_option, protacal;
username = document.forms.login_form.user.value;
password = document.forms.login_form.pass.value;
login_option = document.forms.login_form.login_option.value;
if (login_option==\'forum1\') { document.forms.login_form.action =
forum.com/forum/FORUM1/post.htm; }
else if (login_option==\'forum2\') { document.forms.login_form.action =
forum.com/forum/FORUM2/post.htm; }
}
</script>
<form name="login_form" method="post" onsubmit="set_target();" style="margin:0px">
<input name="user" type="text" size="12" value=""
style="font-size:9px; font-family: Arial; margin-left: 8px" /><br />
<input name="pass" type="password" size="12" value=""
style="font-size:9px; font-family: Arial; margin-left: 8px" />
<select name="login_option" size="1" style="font-size:10px; font-family: Arial; margin-left: 64px">
<option value="forum1">forum1</option>
<option value="forum2">forum2</option>
</select>
-----------
im guessing you hafta add more var for more stuffs you want working
this is just for the username and password
and umm...yeah you hafta add stuff
that's the basic structure. if you have any problems tell me what i get outa helping you, or ask somebody who knows javascript. or maybe some more ppl'll help you here. or maybe i will...