N
Nicky B
Guest
I want to retrieve data from this array from xisbn service.
$theArray = array(
'stat'=>'ok',
'list'=>array(array(
'publisher'=>'O\'Reilly',
'form'=>array('BA',
'DA'),
'lccn'=>array('2004273129'),
'lang'=>'eng',
'city'=>'Sebastopol, CA',
'author'=>'by Mark Lutz and David Ascher.',
'ed'=>'2nd ed.',
'year'=>'2003',
'isbn'=>array('0596002815'),
'title'=>'Learning Python',
'oclcnum'=>array('177669176',
'249274099',
'253402825',
'54619668',
'55847258',
'79871142'))));
how do i echo values such as publisher and author?
$theArray = array(
'stat'=>'ok',
'list'=>array(array(
'publisher'=>'O\'Reilly',
'form'=>array('BA',
'DA'),
'lccn'=>array('2004273129'),
'lang'=>'eng',
'city'=>'Sebastopol, CA',
'author'=>'by Mark Lutz and David Ascher.',
'ed'=>'2nd ed.',
'year'=>'2003',
'isbn'=>array('0596002815'),
'title'=>'Learning Python',
'oclcnum'=>array('177669176',
'249274099',
'253402825',
'54619668',
'55847258',
'79871142'))));
how do i echo values such as publisher and author?