Hi,
I am working on a project where I have to make a form list static,
i.e. put in links so that users can choose a local file. As it stands,
it's looking for a php file. Here's an example of the body code:
<select name="standardc ode" size="10"
onchange="docum ent.reqForm.sub mit()" tabindex="4">
<option value="0" SELECTED>-- Select a
Standard--</option>
<option value= >Alabama</option>
And here's the code in the head:
function doSubmit( fm, bn ) {
document[fm].button.value = bn;
document[fm].submit();
}
How do I rewrite this form code so that a user can scroll down the
menu, select a state, and have it link to another page on the site?
Any help is MUCH appreciated!!
I am working on a project where I have to make a form list static,
i.e. put in links so that users can choose a local file. As it stands,
it's looking for a php file. Here's an example of the body code:
<select name="standardc ode" size="10"
onchange="docum ent.reqForm.sub mit()" tabindex="4">
<option value="0" SELECTED>-- Select a
Standard--</option>
<option value= >Alabama</option>
And here's the code in the head:
function doSubmit( fm, bn ) {
document[fm].button.value = bn;
document[fm].submit();
}
How do I rewrite this form code so that a user can scroll down the
menu, select a state, and have it link to another page on the site?
Any help is MUCH appreciated!!
Comment