// include("haut.php"); ?>
Total list of participants
include "connect.inc.php";
$sql = "select * from mia2004 order by lastname";
$result = mysql_query($sql);
$num = mysql_num_rows ($result);
$date = date("d-m-Y");
echo "$num participants ($date)";
if ($num!=0)
{
?>
Mr/Ms |
LASTNAME |
FIRSTNAME |
Titre/Fonction |
TYPE |
UNIVERSITY |
EMAIL |
WEB
PAGE |
6
sept |
7
sept |
8
sept |
9
sept |
COUNTRY |
while ($ligne = mysql_fetch_array($result))
{ extract ($ligne);
$lastname1=strtoupper($lastname);
$firstname1=ucfirst($firstname);
$country1=strtoupper($country);
$webpage1=substr($webpage, 0,7);
?>
echo strtoupper("$anrede") ?> |
echo "$lastname1" ?> |
echo "$firstname1" ?> |
echo "$fonction" ?> |
echo "$selection" ?> |
echo "$university" ?> |
|
if ($webpage!="")
{ echo " " ;} ?>
|
echo "$six" ?> |
echo "$sept" ?> |
echo "$huit" ?> |
echo "$neuf" ?> |
echo "$country1" ?> |
}
?>
|
|
}
?>
// include("bas.php"); ?>