mkr365 Posted June 22, 2009 Share Posted June 22, 2009 Hello, I have the next problem: I have a site where you can press a 'letter' (for example 'a') and it wil show you the company names starting with an 'a'. It will show you 15 results and if it is more than 15, the next results should be on page 2. The problem is that it wil only show the first 15 results while i have more then 15 company names starting with an 'a'. $numpages = ceil($count/$numresults); if (isset($_GET['page'])) $page = $_GET['page']; else $page = 0; for ($i = 0; $i<$numpages; $i++) { echo '<a href="architecten.php?zoekletter='.$_GET['zoekletter'].'page='.$i.'">pag '.($i+1).'</a> || '; } echo '<br><br>'; My error logging shows the following: PHP Notice: Undefined variable: count. Can somebody help me with this issue? Quote Link to comment https://forums.phpfreaks.com/topic/163256-doesnt-show-page-numbers/ Share on other sites More sharing options...
Adam Posted July 3, 2009 Share Posted July 3, 2009 Well, there's your problem? $count isn't being defined. You've posted code from the point where $count is used as well, so can't help you any further at the moment. Quote Link to comment https://forums.phpfreaks.com/topic/163256-doesnt-show-page-numbers/#findComment-868282 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.