whoisquilty wrote: > > > I've got a sorted found set of rows. Is there a command to go to the > next row in the sorted > set? > > I'm trying to create a slide show of photos. They are entered in a table > and sorted by a sortno > column. And I'd like to create "Next" and "Previous" buttons.
You can use a while loop.
while ($row = mysql_fetch_array($res) ) { //loop through results
$Tit_con = $row['Title'];
$Art_con = $row['Article'];
}
