Conference Papers

"; echo "{$item['Year']}"; // Iterate over the JournalList array within each item foreach ($item['ConferenceList'] as $conference) { // Access individual elements of each journal echo ""; echo "

{$conference['PaperTitle']}

"; echo "
"; echo "

"; // $conferenceKeyword = explode(',', $conference['Keyword']); foreach ($conference['KeyWords'] as $keyword) { if ($keyword) { echo "{$keyword}"; } } echo "

"; echo "

Conference: {$conference['ConferenceName']}

"; echo "

"; echo "Authors: "; // Iterate over the Author array within each journal foreach ($conference['Author'] as $author) { // Process or output the values as needed echo " {$author['AuthorName']},"; } echo "

"; } echo "
"; } } ?>