* Thus wrote Luis Lebron ([EMAIL PROTECTED]):
> The trick is in using the MySQL 0limit statement.
> 
> For the first record use: 
> 
> $sql = mysql_query("SELECT * FROM temp_table limit 0, 1");
> 
> then increment the limit for the next record
> 
> $sql = mysql_query("SELECT * FROM temp_table limit 1, 1");

of course if the  ACCEPT and REJECT actions actually delete it he could
just use:
  SELECT * FROM temp_table limit 1

But this is Off-Topic, so ignore what I just said...

Curt
-- 
"I used to think I was indecisive, but now I'm not so sure."

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to