John Taylor-Johnston wrote:
Can I while this? Not sure how to go about it?

while ($pieces exist) {
echo $pieces[i];
}

This will empty the array so you might want to do this on a copy of it depending on whether it will be needed later in the script...


while (count($pieces) > 0)
{
    echo array_shift($pieces);
}

http://php.net/array_shift

--
Stuart

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



Reply via email to