<?php
  $count=0;
  foreach($someArray as $someVal) {
        $count++;
    if($count == 20) {
      // do some stuff
        $count = 0;
    }
    //do some stuff
  }
?>

How might i do that?
Something like that.

Justin

Much thanks...
-- 
Nick W

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to