Jump to content

Doesn't show page numbers


mkr365

Recommended Posts

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?

 

Link to comment
https://forums.phpfreaks.com/topic/163256-doesnt-show-page-numbers/
Share on other sites

  • 2 weeks later...

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.