include ("connect.php");
?>
Full list of participants
$query = "SELECT * FROM registrati ORDER BY surname";
$tot=0;
$result = $connect->query($query);
echo "";
while ($row = mysqli_fetch_array($result)) {
//SOSTITUISCO \n con
//$testo = str_replace("\n","
",$row['commento']);
$email2 = str_replace("@","",$row['email']);
echo "";
echo "$row[name] $row[surname] ";
echo " ($row[institution])";
echo " | ";
echo "$email2";
echo " |
";
$tot = $tot+1;
}
mysql_close($db);
echo "
Total number of participants: $tot |
";
?>