what if you just want to print one value from a multidimensional array. for example is this right?
$foo[$bar]['price'] = $price;
session_register($foot[$bar]['price']);
then i try to print it like this:
<?echo "{$foo[$bar][price]}"; ?>
this is the way the php manual says to do it in php4. is my problem the
registering or the printing?