
October 24th, 1999, 10:39 PM
|
|
Guest
|
|
Posts: n/a
Time spent in forums:
Reputation Power:
|
|
|
A couple of options:
1. When processing a form, consider which fields need to be validated, and what sort of validation is required. So, if telephone numbers (to use your example) must be unique, you validate this input by doing a lookup on the relevant table to see if any records exist with the same tel number, eg.
$query ="select tel_no from addresses where tel_no=$new_tel LIMIT 1";
$result = mysql_query($query);
$count = mysql_num_rows($result);
if ($count==1):
echo "oops - duplicate tel no";
else:
echo "new tel is fine";
endif;
2. You can define a field on a MySQL table to be unique. If anyone tries to enter a duplicate, MySQL spits the dummy.
------------------
|