Salis Posted October 16, 2007 Share Posted October 16, 2007 I'm writing a new pagination script. The idea is to have blocks based on 5s. For an example: << Prev :: Page 2 of 8 :: Next >> 1 - [2] - 3 - 4 - 5 Then once you hit page 6 to 10 a new block is generated like so: << Prev :: Page 8 of 8 :: Next >> 6 - 7 - [8] This is for an new kind of image gallery that I'm currently working on. 35 images are show at a time and at the bottom on the page there is the pagination. But How would I tell if a number is a multiple of 5? Cheers Quote Link to comment Share on other sites More sharing options...
effigy Posted October 16, 2007 Share Posted October 16, 2007 $num % 5 == 0 Quote Link to comment Share on other sites More sharing options...
Salis Posted October 16, 2007 Author Share Posted October 16, 2007 Wow, that's simple. Thanks effigy Quote Link to comment 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.