Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

PHP Enhancing a Simple PHP Application Paginating a List: Controller Calculating Shirts from Page Number

Logan R
Logan R
22,989 Points

Easier for products

Wouldn't it be easier to just do $end first, then for $start do:

$start = ($end - $products_per_page) + 1;

(as oppose to)

$start = (($current_page - 1) * $products_per_page) + 1;

?

Edit: I watched for 10 more seconds and I agree with his reasoning lol. If the end page only has 4 products, when there is normally 8, then it doesn't really work.

They really need to add a delete button >.>