‘.$row[1].’‘. »\n »;
echo ‘Signé: ‘.$row[2].’‘. »\n ». »\n ». »\n »;
?>
Messages precedents:‘. »\n »;
echo ‘
‘;
// affiche champs
for ($i = 1; $i < mysql_num_fields($res)-2; $i++)
{
echo '
‘;
echo mysql_field_name($res, $i);
echo ‘ |
‘;
}
//boucle ligne
$f=1;
while ($row = mysql_fetch_row($res))
{
echo ‘
‘;
// if ($f == 1)
// {
// $bal = ‘
‘;
// $balend = ‘ |
‘;
// $f = 0;
// }
// else
// {
$bal = ‘
‘;
$balend = ‘ |
‘;
// }
//boucle colonne
for ($j = 1; $j < count($row)-2; $j++)
{
echo $bal;
echo ($row[$j] == NULL) ? 'NULL‘ : $row[$j];
echo $balend;
}
echo ‘
‘;
}
echo ‘
‘;
// on ferme la connexion à la base
mysql_close();
?>