> You could do something like this:
>
> $start = 0;
> if (isset($_GET['start'])) {
>     $start = 1 * $_GET['start']; //make sure it's numerical
> }
>
> then query:
>     SELECT ...... FROM ...... ORDER BY date LIMIT $tart, 1
>
> display the comment
>
> $start++;
>
> provide a link to thispage.php?start=$start
>
> Regards, Jigal.

they comment "count" has to be persistent across all sessions, not just the
current one.


-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to