Html form help!!! really urgent

toxic_pmp

New Member
<form action=http://00.00.00.00/pap/searchresult.asp?appNumber=(what goes here) method=post>
<table width=100%>
<tr><TD align=center>
Test form to outside link
</td></tr>
<TR><td align=center>
<input type="text" name="link" id="link"
" size="40">
</td></tr>
<tR><Td>
<input type="submit" value="GO">
</tD></tr></table></form>

I no its probly very easy but i always use php when im doing a form, but the content management system doesn't support php, so how can i get it so what ever goes into the form will end up at the end of the link??? anywebsites which maybe of help?
 

toxic_pmp

New Member
ok i figured it out now dnt worry!!!
<BR><form action=http://00.00.00.00/pap/searchresult.asp?<appNumber>
<table width=100% align=center summary=" ">
<tr><TD align=left>
Test form to outside link
</td></tr>
<TR><td align=left>
<input type="text" name="appNumber" id="appNumber"
" size="40">
</td></tr>
<tR><Td>
<input type="submit" value="GO">
</tD></tr></table></form></center>
 

Rapid Web Design

New Member
GET not POST

You could also make your form a method of GET rather then POST

you should include it as GET rather then leaving it blank whcih defults to blank but good programming shows evrey thing.
 
Top