As a newb, this probably will sound real easy...
How do I check whether a record from a variable exists in a column of a table named "customers".
IF False then run a bit of code... otherwise bypass this bit of code and continue the script.
The connection to the database has been made and the table selected..
Also - to do with the table design? the record I am checking for is a string and not indexed, will performance become an issue as records are added to the column and the script needs to serch through a few thousand records to find if the record it is looking for exists?
$sql = " SQL QUERY I NEED HELP WITH";
if (mysql_query($sql)) { Do something }
Thanks for any helps!
Biscutty