How do I get data from this php array?

  • Thread starter Thread starter Nicky B
  • Start date Start date
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?
 
Back
Top