dc_jt Posted November 17, 2009 Share Posted November 17, 2009 Hi I have got a loop with a count starting at 0 and I need to change a class within the loop everytime the count hits 0, 6, 12, 18, 24 etc going up in sixes. I then need one for everytime the count is 7, 13, 19, 25 etc again up in sixes but starting from 7. How would I do this? I was thinking something like: if($count%6==0) for the first one? Not sure about the second though starting at 7? Thanks Quote Link to comment https://forums.phpfreaks.com/topic/181835-changing-class-for-every-6th-row/ Share on other sites More sharing options...
trq Posted November 17, 2009 Share Posted November 17, 2009 ($count%6==0) will work on every iteration. Quote Link to comment https://forums.phpfreaks.com/topic/181835-changing-class-for-every-6th-row/#findComment-959008 Share on other sites More sharing options...
Zane Posted November 17, 2009 Share Posted November 17, 2009 if you only have 2 classes then something like this would work if($count % 6 == 0) $class = ($class == 'one') ? 'two': 'one'; echo ""; Quote Link to comment https://forums.phpfreaks.com/topic/181835-changing-class-for-every-6th-row/#findComment-959210 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.