Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Elementary question

Status
Not open for further replies.

skiflyer

Programmer
Sep 24, 2002
2,213
US
I think I know the answer, but I won't be able to test my page for awhile, and figured verification never hurt anyone... but a form can span multiple tables right?

I.E.
Code:
<table>
 <tr>.....</tr><tr><td><FORM blah blah></td></tr>
</table>
<table>
....
</table>
<table>
<tr><td><input type=submit....></FORM></td></tr>
</table>

That submit button will grab all the inputs from the previous tables correct?

-Rob

 
yes but I would place your opening and closing tags outside of the main table like this
<form>
<table>
<tr>.....</tr><tr><td></td></tr>
</table>
<table>
....
</table>
<table>
<tr><td><input type=submit....></td></tr>
</table>
</form> ---------------------------------------
{ str = &quot;sleep is good for you. sleep gives you the energy you need to function&quot;;
ptr = /sleep/gi;Nstr = str.replace(ptr,&quot;coffee&quot;);alert(Nstr); }
---------------------------------------
for the best results to your questions: FAQ333-2924

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top