I was wondering how to fetch data of a person from a table. I found the query to LIMIT
data fetch from table. Here is what I got so far:
$result = mysql_query("SELECT * FROM users WHERE username = '" . $username[$x] . "' LIMIT " . $last_limt . " , " . $nxt_limt . "");
It returns data when LIMIT
is available but if the LIMIT
exceed the entire data returns null. So how can I know if ROW is available or not in table?