I read this thread: http://www.vodahost.com/vodatalk/add...rm-wizard.html to help me out and while it was helpful, it didn't quite do what I was looking for.
I need to create a search field so that when people type a football player's name, it searches on NFL.com player's search, here: http://www.nfl.com/players/search?ca...erType=current
I tried using the html commands mentioned in the thread mentioned above:
<form method="get" action="http://www.google.com/search">
<div style="border:1px solid black;padding:4px;width:20em;">
<table border="0" cellpadding="0">
<tr><td>
<input type="text" name="q" size="25"
maxlength="255" value="" />
<input type="submit" value="Google Search" /></td></tr>
<tr><td align="center" style="font-size:75%">
<input type="checkbox" name="sitesearch"
value="unionsinfronteras.com" checked /> only search union sin fronteras site<br />
</td></tr></table>
</div>
</form>
is there way to manipulate these commands to do what I want, or should I do something else? thanks!!
I need to create a search field so that when people type a football player's name, it searches on NFL.com player's search, here: http://www.nfl.com/players/search?ca...erType=current
I tried using the html commands mentioned in the thread mentioned above:
<form method="get" action="http://www.google.com/search">
<div style="border:1px solid black;padding:4px;width:20em;">
<table border="0" cellpadding="0">
<tr><td>
<input type="text" name="q" size="25"
maxlength="255" value="" />
<input type="submit" value="Google Search" /></td></tr>
<tr><td align="center" style="font-size:75%">
<input type="checkbox" name="sitesearch"
value="unionsinfronteras.com" checked /> only search union sin fronteras site<br />
</td></tr></table>
</div>
</form>
is there way to manipulate these commands to do what I want, or should I do something else? thanks!!
Comment