azz0r Posted November 27, 2003 Share Posted November 27, 2003 I want to select new posts posted after a cookie string, and where the forum type = anon or publ. However my left join query seems to just close the page off from loading! Help please. [php:1:d36cd25b7f]if($_COOKIE[\'last_visit\']) {$count = mysql_num_rows(mysql_query(\"SELECT p.time, p.pid, f.type, f.fid FROM $forumzDB.forumz_posts p LEFT JOIN $forumzDB.forumz_forums f ON (p.fid = f.fid) WHERE ((p.time > \".$_COOKIE[\'last_visit\'].\") && (f.type = \'anon\' OR f.type = \'publ\'))\")) or die(mysql_error()); if($count < 1) {echo \"No new posts\";} else {echo \'<a href=\"?section=new_posts&np=\'.$_COOKIE[\'last_visit\'].\'\">\'.$count.\' new posts</a>\';}} else {echo \'Cookie was just set\';} ?>[/php:1:d36cd25b7f] Quote Link to comment Share on other sites More sharing options...
azz0r Posted November 27, 2003 Author Share Posted November 27, 2003 bump :oops: Quote Link to comment Share on other sites More sharing options...
azz0r Posted November 28, 2003 Author Share Posted November 28, 2003 and the code to get it working was... $count = mysql_num_rows(mysql_query("SELECT p.time, p.pid, f.type, f.fid FROM $forumzDB.forumz_posts p LEFT JOIN $forumzDB.forumz_forums f ON (p.fid = f.fid) WHERE ((p.time > ".$_COOKIE[\'last_visit\'].") && (f.type = \'anon\' OR f.type = \'publ\'))")); Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.