Hi to all!
I have a little proble with my php code.
This is my code:
$result = mysql_query("SELECT name,point from tablename where points >= $points ORDER BY points ASC limit 7",$db);
and this is a possible result:
NAME | POINTS
Mark | 100000
David | 90000
Me | 74000
...
Note that David is the second in the list, he is number 2. I need to get the number 2. How can I do? Which function have I to use to solve my problem?
Thanks a lot for your help.
Danielli