Your Ad Here

Posted By

lfatr on 02/16/10


Tagged


Versions (?)

EVERY 6 REMAINDER LOOP


 / Published in: PHP
 

URL: http://digitalmash.com/journal/articles/dynamic-columns/

  1. <!-- LOOP BEGIN -->
  2. <div class="column">Dynamic content</div>
  3. <?php
  4. $postcounter++;
  5. if ($postcounter % 6 == 0) {;
  6. echo '<div class="clearfix"></div>';
  7. };
  8. ?>
  9. <!-- LOOP END -->

Report this snippet  

You need to login to post a comment.