What about:

foreach ($_SESSION['user_id'] as $key => $value)
{
        $last = $_SESSION['last_name'][$key];
        $first = $_SESSION['first_name'][$key];
        echo "$last, $first";
}

Jay:

Close, it produced:

Array, Array
Array, Array
Array, Array

Cheers,

tedd
--
-------
http://sperling.com  http://ancientstones.com  http://earthstones.com

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

Reply via email to