|
//********** Check if specific record exists ************
global $conn;
$strSQLExists = "select * from AnyTable where AnyColumn='SomeValue'";
$rsExists = db_query($strSQLExists,$conn);
$data=db_fetch_array($rsExists);
if($data)
{
// if record exists do something
}
else
{
// if dont exist do something else
}
|