I want to do a search to see if there is a row with the title = to title ie:
$result = mysql_query ("SELECT * FROM RLNZ_NEWS where Title = '$title'");
$row = mysql_fetch_array($result);
THis works fine but I want to do an if statement if there is a row or not....
How can I do this? or is there a better way?