Fremont Servers
10-11-2001, 09:11 PM
Does anyone know of a script that would do this?
<select>
<option>abc.com</option>
<option>abd.com</option>
<option>abe.com</option>
</select>
If abc.com is selected, then it would show this?
<form> METHOD="post" ACTION="http://www.abc.com/xxx.cgi"></form>
If abd.com is selected, then it would show this?
<form> METHOD="post" ACTION="http://www.abd.com/xxx.cgi"></form>
If abe.com is selected, then it would show this?
<form> METHOD="post" ACTION="http://www.abe.com/xxx.cgi"></form>
I want to avoid creating a page for each domain name.
<select>
<option>abc.com</option>
<option>abd.com</option>
<option>abe.com</option>
</select>
If abc.com is selected, then it would show this?
<form> METHOD="post" ACTION="http://www.abc.com/xxx.cgi"></form>
If abd.com is selected, then it would show this?
<form> METHOD="post" ACTION="http://www.abd.com/xxx.cgi"></form>
If abe.com is selected, then it would show this?
<form> METHOD="post" ACTION="http://www.abe.com/xxx.cgi"></form>
I want to avoid creating a page for each domain name.
