At 11:36 AM 2/6/2001 -0500, Toby Butzon wrote:
>Or you might try a foreach($array as $element)... about the same but it
>doesn't give you they key - just the value (as $element).
>
>foreach ($email as $current) {
> // process this email addr
>} // move on to the next one until the whole arr of them has been proc'd
Or perhaps:
foreach ( $email as $key => $val )
{
// ....
}
for both.
Enjoy!
Faisal
--
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]