Jump to content

[SOLVED] mysql LIMIT function


daveh33

Recommended Posts

I am trying to execute the below query

 

$start=100;
$finish=105;
$result=mysql_query("SELECT * FROM $tablename LIMIT $start,$finish") or die(mysql_error());
echo "<b>Starting Row: <u>$start</u><br />
Finishing Row: <u>$finish</u><br /></b>
<br />Number of rows found: $numrows<br />";

 

This should get 5 rows - but when I run it, it picks up 105- it ignores the start & just limits from start of db until $finish

 

Any ideas??

 

 

Link to comment
https://forums.phpfreaks.com/topic/88877-solved-mysql-limit-function/
Share on other sites

$start=100;
$finish=5;   #If you do the math, this is right
$result=mysql_query("SELECT * FROM $tablename LIMIT $start,$finish") or die(mysql_error());
echo "<b>Starting Row: <u>$start</u><br />
Finishing Row: <u>$finish</u><br /></b>
<br />Number of rows found: $numrows<br />";

 

Happy Coding

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.