SESSION DESCRIPTIONS
Switch View: Program View | Presenter Biographies | Social Events | Keynote
//connect to db $db = getDatabaseConnection(); $session_data = "SELECT * FROM sessions ORDER by sessionTitle"; $result = mysql_query($session_data); //display records while ($query_data = mysql_fetch_assoc($result)) { echo "" . $query_data['sessionTitle'] . "
\nPresenter(s): " . join(", ", array_map("wrapPresenterLink", getAssignedPresenters($query_data['id_sess'], 1))) . "
\n" . getSessionDate($query_data['programCode']) . "
\n" . $query_data['abstract'] . "
\n";
if ($query_data['convenor'] != '')
{echo"Convenor: " . $query_data['convenor'] . "
";}
if ($query_data['moderator'] != '')
{echo"Moderator: " . $query_data['moderator'] . "";}
echo "
Presentation (PowerPoint or PDF): " . $query_data['file1'] . "
"; } if ($query_data['file2'] != '') { echo "Presentation (PowerPoint or PDF): " . $query_data['file2'] . "
"; } if ($query_data['file3'] != '') { echo "Additional Documentation: " . $query_data['file3'] . "
"; } } ?>