<?
$pre   = '../../';
include  $pre . "common.php";
$title = "2008 US GLOBEC Pan-Regional Synthesis Workshop";
$logo  = false;
//include HEAD;

//$t = array('t_p','t_s','w_a','w_p','w_s','th_a','th_p','th_s','f_a');
$query  = "SELECT first,last,email FROM workshops WHERE workshop='synth08' ORDER BY last";
$result = $db->sql_query($query);

//$out = "<h1>Current List of Participants</h1>\n <br />";

//$out .= "<table id=\"part\">\n<tr>\n   <td>&nbsp;</td>\n   <td><b>Name</b></td>\n
//   <td><b>Affiliation</b></td>\n</tr>";

$out='';
while( $row = $db->sql_fetchrow($result) ){
   $name  = stripslashes($row['first']) . " " . stripslashes($row['last']);
   $email = stripslashes($row['email']);
   $out  .= '"' . $name . '" &lt;' . $email . "&gt;<br>";
}

echo $out;

//include FOOT;
?>
