<?php$i = 0;while(osc_has_items()) { ... if($i%3 == 0) { ?> <script>somejavascriptadsensehere</script> <?php } ... $i++;}
You need to create PHP condition to do it.Something like:Code: [Select]<?php$i = 0;while(osc_has_items()) { ... if($i%3 == 0) { ?> <script>somejavascriptadsensehere</script> <?php } ... $i++;}
if($c == 3 && osc_count_items() > 3) { echo eps_banner('search_middle'); }
if($c%3 == 0 && osc_count_items() > 3) { echo eps_banner('search_middle'); }