$id) $sessions_id[$i] = "'$id'"; // add quotes to each value in the array $sessions_id = implode(",", $sessions_id); // remake the comma delimited list echo "TODO sessions"; /* $details = $db->runQuery("SELECT session_id, category_id, sub_category, session_name, session_chair FROM program_sessions " . "WHERE session_name IN ($sessions_id)"); while($detail = $db->fetch_results($details)) { list($session_id, $category_id, $sub_category, $session_name, $session_chair) = $detail; ?> */ ?>
  Topics Instructor Topics Co-Chairs Topics (Speakers) Chair Topics Co-Chairs
fetch_results($db->runQuery("SELECT category FROM program_sessions_categories WHERE category_id=$category_id")); echo "$category » $sub_category"; // now we'll start a list within this table cell which will show the individual papers in the session and get // those papers from the database using the session_id for this row. ?>
    runQuery("SELECT paper_id, authors, title, institution FROM program_sessions_papers WHERE session_id=$session_id"); while($paper = $db->fetch_results($papers)) { list($paper_id, $authors, $title, $institution) = $paper; ?>
  • , "," .
fetch_results($db->runQuery("SELECT speaker_id, speaker FROM program_sessions_speakers WHERE session_id=$session_id")); $temp_ar = explode("\n", $speaker); $speaker = join("\n", array_slice($temp_ar, 0, sizeof($temp_ar)-2)); ?>
Back to the Full Program