"; echo ""; echo ""; echo ""; echo ""; echo ""; echo ""; echo ""; echo "
"; echo "Presentations"; echo ""; echo "

"; echo "Poster and oral presentations from the 13th Experts Meeting held September 19-22, 2005 in Boulder, Colorado are available as PDF files."; echo "

"; echo "

"; echo "For a complete listing of submitted abstracts, see Abstracts."; echo "

"; echo ""; echo ""; echo ""; echo ""; # echo ""; echo ""; echo ""; # echo "
"; echo ""; echo "

"; echo ""; echo ""; echo ""; echo ""; for ($i = 0; $i < count($regarr); $i++) { echo ""; $field = preg_split("/\|/", trim($regarr[$i])); $pres = array_values(preg_grep("/_${field[4]}_/", $presentations)); # # Only list registrants that gave presentations # if ($pres[0] == "") continue; # # Name and affiliation # $z = "${field[0]} ${field[1]}"; echo ""; echo ""; # # Link abstract if available # echo ""; } else { echo "None submitted"; } # # Link presentations # echo ""; echo ""; } echo "
NameAffiliation"; echo "Abstract"; echo "Presentation(s)"; echo "
${z}${field[2]}"; $abs = array_values(preg_grep("/_${field[4]}\./", $abstracts)); if ($abs[0] != "") { $pdf = substr($abs[0], strrpos($abs[0], '/')); echo "${field[3]}"; for ($j = 0; $j < count($pres); $j++) { $tmp = preg_split("/\_/", $pres[$j]); $type = (substr($tmp[count($tmp) - 1], 0, 1) == "o") ? "Oral" : "Poster"; $pdf = substr($pres[$j], strrpos($pres[$j], '/')); echo "${type} "; } echo "
"; echo "

"; echo "
"; echo "
"; echo ""; echo ""; echo ""; echo ""; echo ""; echo ""; echo "
"; echo ""; echo "[NOAA Homepage]"; echo ""; echo ""; echo "Climate Monitoring and Diagnostics Laboratory
"; echo "[Home]"; echo "[About CMDL]"; echo "[Contact Us]"; echo "[Feedback]"; echo "[Privacy Policy]"; echo "
"; echo "
"; echo ""; echo "[OAR Homepage]"; echo "
"; echo "
"; echo "
"; echo ""; echo ""; } # # Function GetAbstracts ######################################################## # function GetAbstracts() { # # Get a list of available abstracts # exec("/bin/ls co2experts/abstracts/*.pdf", $arr, $ret); return ($arr); } # # Function GetPresentations ######################################################## # function GetPresentations() { # # Get a list of available oral and poster presentations # exec("/bin/ls co2experts/presentations/*.pdf", $arr, $ret); return ($arr); } # # Function DB_Participants ######################################################## # function DB_Participants() { # # Extract registrant name and affiliation from DB # $res = array(); $select = "SELECT first, last, affiliation, title, num"; $from = " FROM data"; $etc = " ORDER BY last"; $res = ccgg_query($select.$from.$where.$etc); return ($res); } ?>