A Database Error Occurred
Error Number: 1064
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ' 4' at line 15
SELECT blog.*, (SELECT title FROM blog_type WHERE blog_type.blog_type_id = blog.blog_type_id) as category_name, (SELECT count(blog_comment_id) FROM blog_comment WHERE blog_comment.blog_id = blog.blog_id) as comment, DATE_FORMAT(blog.created,'%W, %M %e, %Y - %h:%i %p') as created_date FROM blog, blog_type WHERE blog.blog_type_id = blog_type.blog_type_id AND blog.status = '1' AND blog_type.status = '1' ORDER BY blog.created DESC, blog.ordering ASC LIMIT , 4