Bonjour,
J'affiche une liste de personnes et avant que le tableau débute, il y a un énorme espace et je ne vois pas pourquoi.
J'ai oublié de préciser que sous Firefox, tout est ok!
Voici le code:
Code :
- <html>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
- <title>ATS-Entraîneur</title>
- <link href="../../ats.css" rel="stylesheet" media="screen">
- </head>
- <body>
- <div class="conteneur">
- <div class="header"><p class="top"><a href="http://www.ats3r.org/script/membres/index.php"><img src="../../site/images/accueil.gif" border="0" alt="Accueil"></img></a></p>
- </div>
- <div class="framebloc">
-
- <?php
- echo '<table align="center" border="2" cellpadding="3">';
- echo '<Caption><h1><strong>Liste des membres</strong></h1></caption>';
- echo '<tr>';
- echo '<th>Identité</th>';
- echo '<th>MAJ</th>';
- echo '<th colspan="3">Action</th>';
- echo '</tr>';
- require("../../config.inc.php" );
- $recherche = mysql_query ("SELECT * FROM ATS_membre ORDER BY nom,prenom" );
- while ($var = mysql_fetch_array ($recherche))
- {
- $passeport=$var['passeport'];
- $r_lien = mysql_query ("SELECT actif FROM ATS_statut where passeport='$passeport'" );
- $nb_lien='';
- if (mysql_num_rows($r_lien)>0){$nb_lien=' ('.mysql_num_rows($r_lien).')';}
- //$r_form = mysql_query ("SELECT cc FROM ATS_formation where passeport=$var['passeport']" );
- if (htmlspecialchars($var['maj_iden'])<>'0000-00-00')
- {
- $maj=htmlspecialchars($var['maj_iden']);
- }
- else
- {
- $maj=' ';
- }
- echo '<tr>';
- echo '<td><strong>'.htmlspecialchars($var['nom']).'</strong> '.htmlspecialchars($var['prenom']).'</td>';
- echo '<td><strong>'.$maj.'</strong></td>';
- // Visualiser la fiche
- echo '<td align="center">';
- echo '<form method="GET" action="m_fiche.php">';
- echo '<input type="hidden" name="id" value='.$var['id'].'>';
- echo '<input type="image" src="../images/loupe.png" width="20" height="20" alt="Identité" onclick="enregistrer()" />';
- echo '</td>';
- echo '</form>';
- // Visualiser lien
- echo '<td align="center">';
- echo '<form method="GET" action="m_lien.php">';
- echo '<input type="hidden" name="passeport" value='.$var['passeport'].'>';
- echo '<input type="image" src="../images/h.png" valign="center" width="20" height="20" alt="Lien avec l\'ATS" onclick="enregistrer()" />';
- echo $nb_lien;
- echo '</td>';
- echo '</form>';
- // Visualiser Formation
- echo '<td align="center">';
- echo '<form method="GET" action="m_form.php">';
- echo '<input type="hidden" name="passeport" value='.$var['passeport'].'>';
- echo '<input type="image" src="../images/diplome.png" width="20" height="20" alt="Formation" onclick="enregistrer()" />';
- echo '</td>';
- echo '</form>';
- // Effacer une fiche
- //echo '<form method="GET" action="ent_statut_maj.php">';
- //echo '<input type="hidden" name="type_action" value="eff">';
- //echo '<input type="hidden" name="id" value='.$var['id'].'>';
- //echo '<td align="center">';
- //echo '<input type="image" src="../images/poubelle.png" alt="Effacer" onclick="enregistrer()" />';
- //echo '</td>';
- //echo '</form>';
- }
- echo '</table>';
- mysql_close();
- ?>
- </div>
- </div>
- </body>
- </html>
|
Message édité par fourniey le 03-11-2007 à 01:52:58