>I don't think PHP will understand commas as command separators.
>
>Perhaps what you could try is a simple loop 0 to 6 and for each iteration
>of the loop, unset the corresponding array element
>
>for($i=0; $i <= 6; $i++) {
>  unset($array[$i];
>  }

this actually worked... thanks for the hint:

<pre>
         function array_sshift(&$array,$number_of_elements=1)
         {
                 for($count=0;$count<$number_of_elements;$count++)
                 {
                         array_shift($array);
                 }
         }
</pre>
____________________________
. Christian Dechery (lemming)
. http://www.tanamesa.com.br
. Gaita-L Owner / Web Developer


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to