11-22-2006, 03:46 AM
|
Administrator
|
|
Join Date: Jul 2005
Posts: 46
|
|
If you want a search box on a different webpage, use the following where http://www.DOMAIN.COM/DIR/tdSearch.php is the full link to your search.php page:
Code:
<form method="get" action="http://www.DOMAIN.COM/DIR/tdSearch.php">
<table border="0" cellspacing="0" cellpadding="2">
<tr>
<td><b>Search:</b></td>
<td><input name="query" type="text"></td>
<td><input type="submit" value="Go"></td>
</tr>
</table>
</form>
|