newbtophp Posted August 23, 2009 Author Share Posted August 23, 2009 So? $result['items'] = array(); count($result['items']); Quote Link to comment https://forums.phpfreaks.com/topic/171418-solved-paging/page/2/#findComment-904527 Share on other sites More sharing options...
AngelicS Posted August 23, 2009 Share Posted August 23, 2009 if $result['items'] is the news items, you can use the count to count them by doing the following. If not, I'd like to know how you get the number of search results, so that I can think clearly. $items=count($result['items']); Now to decide how many pages you want, you divide the $items, with the number of results you want on every page, in this case - 10. Like this. $pages=$items/10; There you got the max pages. Is this what you need? Best wishes //AngelicS Quote Link to comment https://forums.phpfreaks.com/topic/171418-solved-paging/page/2/#findComment-904562 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.