Hello, Ive got a query that returns fields from a user table and at the same time with this query other related fields from two other tables are called, the query is:
SELECT blogs.blog_Id, blog_Title, blog_Created_Datetime, entry_Text, entry_Datetime, user_Name, location
FROM blogs, users, blog_entries
WHERE blogs.user_Id = users.user_Id AND blogs.blog_Id = blog_entries.blog_Id AND user_Name = '$username';
this returns all the neccessary fields, but in this case the blog titles are being repeated each time an entry comes up for the same blog, I want to be able to retrieve all the blog entries for a blog title but not repeat the blog titles if that makes sense, thanks in advance abu