advanced code snippet search
princeofvegas on 05/19/11
mysql php
05/19/11 05:46am
1 person have marked this snippet as a favorite
boksiora
<?php$i = 1;while ($x < 17){ echo 'Data ' . $i . '<br>'; //Change Value to how many rows you want to insert after. if( ($i % 3) == 0 ){ echo 'Snippet of text--<br>'; } $i++; $x++;}//while?>
Report this snippet Tweet
Comment:
You need to login to post a comment.