hello, i have the following code:
and it says limit 25,50 which is supposed to only results 25-50 but instead its showing up 50 results on the page? the page where its limited 0, 25 works fine. also on the pages where its 50,75 its showing some of the same results from the other pages
Code:
<? $get_name = mysql_query("SELECT `id`, `name`, `link`, `value`, `description` from `offers` WHERE `countries` = 'us' LIMIT 25, 50"); while($namerow = mysql_fetch_array($get_name)) { $id = $namerow["id"]; $link = $namerow["link"]; $name = $namerow["name"]; $amount = $namerow["value"]; $desc = $namerow["description"]; ?>
Comment