Next and Back links
9 posts by 3 authors in: Forums > CMS Builder
Last Post: May 4, 2010 (RSS)
By KCMedia - May 2, 2010
I was just testing the next and back link pages on this site page and it isnt working
www.actionmc.com.au/test.php
also i have attached the test file with the code.
Craig
KC Media Solutions
www.kcmedia.biz
Re: [kcmedia] Next and Back links
By zip222 - May 3, 2010
Re: [kcmedia] Next and Back links
By Jason - May 3, 2010
When you're selecting your records, you're using this code:
list($used_motorcyclesRecords, $used_motorcyclesMetaData) = getRecords(array(
'tableName' => 'used_motorcycles',
'limit' => '3',
));
The "limit" option means it will only return the first 3 records. Try replacing it with this:
list($used_motorcyclesRecords, $used_motorcyclesMetaData) = getRecords(array(
'tableName' => 'used_motorcycles',
'perPage' => '3',
));
This will only display 3 records per page. You can change the number 3 with however many records you want displayed on a single page.
Hope this helps.
Jason Sauchuk - Project Manager
interactivetools.com
Hire me! Save time by getting our experts to help with your project.
http://www.interactivetools.com/consulting/
Re: [Jason] Next and Back links
By KCMedia - May 3, 2010
But i still dont get the back and next links.
Craig
KC Media Solutions
www.kcmedia.biz
Re: [kcmedia] Next and Back links
By Jason - May 3, 2010
Could you repost your .php file so I can take a look at it.
Thanks.
Jason Sauchuk - Project Manager
interactivetools.com
Hire me! Save time by getting our experts to help with your project.
http://www.interactivetools.com/consulting/
Re: [Jason] Next and Back links
By KCMedia - May 3, 2010 - edited: May 3, 2010
here you go.
Craig
KC Media Solutions
www.kcmedia.biz
Re: [kcmedia] Next and Back links
By KCMedia - May 3, 2010
I got it working but now when i click on the next link i get a Record not found on the page.
Craig
KC Media Solutions
www.kcmedia.biz
Re: [kcmedia] Next and Back links
By KCMedia - May 3, 2010
I got it working now and all is good.
Craig
KC Media Solutions
www.kcmedia.biz
Re: [kcmedia] Next and Back links
By Jason - May 4, 2010
Awesome! Glad to hear that everything is working.
Jason Sauchuk - Project Manager
interactivetools.com
Hire me! Save time by getting our experts to help with your project.
http://www.interactivetools.com/consulting/