Thread: New To Script
View Single Post
Old 09-08-2006, 09:11 PM   #2
Dave A
Purple Mole
 
Dave A's Avatar
 
Join Date: Aug 2004
Location: North Island New Zealand
Posts: 170
Hi phpdig will do all of what you want it to do, at the present my search has heaps of different type of formats that it has managed to list and specific searches down to product numbers will be able to be read and searched for.

The search box size can be changed quite easily:
<form action='http://www.sitesname/search.php' method='get'>
<input type='hidden' name='site' value='0'/>
<input type='hidden' name='path' value=''/>
<input type='hidden' name='template_demo' value=''/>
<input type='hidden' name='result_page' value='http://www.sitename/search.php'/>
<table cellpadding="2">
<tr>
<td>
<p><strong>Search for:
<input type='text' size='25' maxlength='50' name='query_string' value=''/>
<input type='submit' name='search' value='Search'/>
&nbsp;&nbsp;display
<select name='limite'>
<option selected="selected">10</option>
<option>30</option>
<option>100</option>
</select>
results</strong></p></td>
</tr>
<tr>
<td>
<p>
<input type="radio" name="option" value="start" checked="checked"/>
and operator&nbsp;
<input type="radio" name="option" value="any" />
or operator</p></td>
</tr>
<tr>
<td class="linearGrey">
</td>
</tr>
</table>


Just change the values in bold to alter the search box size.

Last edited by Dave A; 09-08-2006 at 09:16 PM.
Dave A is offline   Reply With Quote