PHP Blog Query
Posted: Fri Nov 30, 2012 6:39 pm
I've been following the blog with commenting tutorial but when it comes to the get posts query, I get the error:
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 '$sql= "SELECT 'posts'.'post_id' AS id, 'posts'.'post_head' AS head, ' at line 1:My query code is:
$sql = "SELECT 'posts'.'post_id' AS 'id', 'posts'.'post_head' AS 'head', LEFT('posts'.'post_body',512) AS 'blogsummary', 'posts'.'post_user' AS 'user', DATE_FORMAT('posts'.'post_date', '%d/%m/%Y %H:%i:%s') AS 'date', 'comments'.'total_comments', DATE_FORMAT('comments'.'last_comment', '%d/%m/%Y %H:%i:%s') AS 'last_comment' FROM 'posts' LEFT JOIN ( SELECT 'post_id', COUNT('comment_id') AS 'total_comments', MAX('comment_date') AS 'last_comment' FROM 'comments' GROUP BY 'post_id' ) AS 'comments' ON 'posts'.'post_id' = 'comments'.'post_id' ORDER BY 'posts'.'post_date' DESC";I can't see what I've done wrong within my code