I have the following array:
Array ( [1] => Array ( [spubid] => A00319 [sentered_by] => pubs_batchadd.php [sarticle] => Lateral m
Why don't you do
foreach($apubs as $apub) { $sauthors = ''; $stitle = $apub['sarticle']; foreach($apub['authors'] as $author) { $sauthors .= $author['slast'].", ".$author['sfirst']."; "; } echo "$sauthors\n$stitle\n"; }