Originally posted by joyorudis
Is it possible to offer code to my site visitors (who are also webmasters) that would put a search box on their site that would allow visitors to their site to search MY INDEXU directory? (Sorry for the run-on sentence!) That could really boost traffic!
If anyone knows about this, please let me know!
Kim
The easiest way would be to copy the html code for one of the search boxes on your site. Then make sure that all the paths are absolute.
The following code could be used to allow for webmasters to search your site.
PHP Code:
<form method="get" action="http://www.yoursite.com/search.php">
<table border="0" cellspacing="1" cellpadding="2">
<tr>
<td>
<p align="center">
<input type="text" name="keyword" size=12>
<input type=submit value="Search">
</p>
</td>
</tr>
<tr>
<td><font size="1"><a href="http://www.yoursite.com/power_search.php" >More Search
Options</a></font></td>
</tr>
</table>
</form>
Good luck