Hi Landy.
If you are searching a database, it is very easy. All ou have to do is make a box and give it a variable, say $string. Once that is done, make the PHP script that proccesses it. It should look something like this:
$request="SELECT * FROM tablename WHERE something = '$string' OR somethingelse='$string'";
Then, if doesn't find anything, do something like this:
if (mysql_num_rows($result) == 0)
{
echo "Sorry...";
}
And if it does find something (continuation to the above script):
else
{
while ($row = mysql_fetch_object ($result))
{
print "<tr>";
print "<td>$ligne->coulumn1</td>";
print "<td>$ligne->coulm2</td>";
print "<td>$ligne->column3</td>";
print "<td>$ligne->column4</td>";
print "</tr>";
}
mysql_free_result ($result);
That is very basic, but it should give you a start. Good luck.