Hello,
I have a problem now to check the whole table with this code… can someone please help me?
$q6=mysql_query(‘SELECT * FROM banlinktable’);
$o6=mysql_fetch_object($q6);
$banurl=$o6->url;
if (strpos($newsubmitrul, $banurl) != FALSE)
{
exit;
}
With this code it will only check the last inserted row, how can I check the whole banlinktable for the url?
$newsubmiturl is a new url posted by user and when it matched the $banurl from my database table banlinktable it will exit.