- i have a news system on my site and i wanted to know how you make it only show the last 10 posted, so that my main page doesn't get cramped!
$sql = "select * from stories ORDER BY id desc";
$result = mysql_query($sql, $conn);
what will i need to add to my query?!
- i have a mobile phone tones on my website and would like to show only the tones which have an artists initial as a, then b, so that they are categorised.
what would i need to add to my query?!
Thanks Inadvanced, I Appreciate It!