if($_GET["blog"]) {
if(mysql_query("SELECT * FROM blog_post WHERE author = '".$_GET["blog"]."'")) { presentblog($_GET["postid"]);}
else { return;}
}
Keeps entirely crashing the page if the mysql_query() does not go through. It won't simply return in any other case. Ideas?
presentblog() function has no errors and works fine, so I know for a fact that isn't the error.