Hi all members
I have script to diaplay news that users submit it , this sql code to diapsy all news for all users
I write above SQL to display all username and under every username I show the news that this user addedCode:select * from Users,News where Users.UsersID=News.NewsID
my problem how to display 3 news only for every user
i try this code
but it's break after the first user, please help me to create this sqlCode:select * from Users,News where Users.UsersID=News.NewsID limit 3




Reply With Quote