List of Abstracts Submitted for ROOT 2002


0 ORDER BY regdate"; echo "The following abstracts have been submitted for the ROOT 2002 workshop:

\n"; // table cell options //$tdopt = "ALIGN=LEFT VALIGN=CENTER WIDTH=\"105\""; $tdopt = ""; // access database if ($db = mysql_connect("localhost", "nobody", "")) { if (mysql_select_db("root", $db)) { if ($result = mysql_query($sql, $db)) { $i = mysql_num_rows($result); if ($i == 0) { echo "No abstracts found\n"; mysql_close($db); return; } echo "$i abstracts

\n"; $flds = mysql_num_fields($result) - 1; echo ""; for ($i = 0; $i < $flds; $i++) { $fname = mysql_field_name($result,$i); echo ""; } echo "\n"; while ($row = mysql_fetch_array($result)) { echo "\n"; for ($i = 0; $i < $flds; $i++) { $s = ereg_replace("\n", "", $row[$i]); $s = trim($s); if ($s == "") echo ""; else echo ""; } echo "\n"; $s = ereg_replace("\n", "", $row[$flds]); $s = trim($s); if ($s == "") echo ""; else echo ""; echo "\n"; } echo "
$fname
 
-$row[$i]
-$row[$flds]
 
\n"; } } mysql_close($db); } ?>


Back to the ROOT Home Page