This will also work, but again it will only allow for one search criteria:
the form has an option list, an input box and select
<form action="PeopleResults.php" method="post">
<table valign="top" align="right" cellpadding="0" cellspacing="0" border="1">
<tr>
<th colspan="3" align="center">Find Contact</th>
</tr>
<td>
<select name="searchtype" value="searchtype">
<option value="FirstName">First Name
<option value="LastName">Last Name
<option value="Based">Site
</select>
</td>
<td>
<!--<input type="text" name="searchdata">-->
<input type="text" size="20" maxlength="20" name="searchdata" value="">
</td>
<td rowspan="2" width="15px"><input type="submit" value="Search"></td>
</tr>
</table>
</form>
then the query is :
query = "SELECT * FROM people
WHERE people.$searchtype LIKE '$searchdata' AND people.status = 'CURRENT EMPLOYEE'
ORDER BY LastName";
$result = mysql_query($query);