abdulo
2011-10-14 13:56:20 UTC
Bonjour,
je fais une requete dans un espace admin pour afficher toutes demandes envoyes
par formulaire
je voudrais un affichage des données a l'aide d'un tableau or j'ai si j'ai bien
un tableau j'ai un <th>
qui revient a chaque fois et les cellules ne pas harmonisées...
Je voudrais bien un petit coup de main ...
SVP
merci d'avance
voici le code :
<?php
$liaison = mysql_connect("localhost", "root", "root");
mysql_select_db("base");
$sql = "SELECT * FROM table";
$demandes = mysql_query($sql);
?>
<!doctype html>
<html lang=fr>
<head>
<meta charset=utf-8 />
<title>Demandes :</title>
<link href="../CSS/feuilleStyle.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="listedemande">
<h1>Liste des demandes</h1>
<?php while (($demande = mysql_fetch_assoc($demandes)) !== false): ?>
<table>
<tr>
<th>ID</th>
<th>Nom</th>
<th>Prénom</th>
<th>Société</th>
<th>Adresse</th>
<th>Code Postal</th>
<th>Ville</th>
<th>Courriel</th>
<th>Tel</th>
<th>Choix</th>
<th>Message</th>
<th>Suppression</th>
</tr>
<tr>
<td><?php echo $demande["id"]; ?></td>
<td><a href="modification.php?id=<?php echo $demande["id"]; ?>"><?php echo
$demande["nom"]; ?></a></td>
<td><?php echo $demande["prenom"]; ?></td>
<td><?php echo $demande["societe"]; ?></td>
<td><?php echo $demande["adresse"]; ?></td>
<td><?php echo $demande["cp"]; ?></td>
<td><?php echo $demande["ville"]; ?></td>
<td><?php echo $demande["courriel"]; ?></td>
<td><?php echo $demande["tel"]; ?></td>
<td><?php echo $demande["choix"]; ?></td>
<td><?php echo $demande["message"]; ?></td>
<td><a href="suppression.php?id=<?php echo $demande["id"]; ?>">
X</a></td>
</tr>
</table>
<?php endwhile; ?>
</div>
Inserer nouveau contact :
<a href="insertion.php">Insertion</a><br/>
<br/>
<p>Pour <b>modifier un contact</b>, cliquer sur le nom correspondant</p>
</body>
</html>
<?php
mysql_close($liaison);
?>
je fais une requete dans un espace admin pour afficher toutes demandes envoyes
par formulaire
je voudrais un affichage des données a l'aide d'un tableau or j'ai si j'ai bien
un tableau j'ai un <th>
qui revient a chaque fois et les cellules ne pas harmonisées...
Je voudrais bien un petit coup de main ...
SVP
merci d'avance
voici le code :
<?php
$liaison = mysql_connect("localhost", "root", "root");
mysql_select_db("base");
$sql = "SELECT * FROM table";
$demandes = mysql_query($sql);
?>
<!doctype html>
<html lang=fr>
<head>
<meta charset=utf-8 />
<title>Demandes :</title>
<link href="../CSS/feuilleStyle.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="listedemande">
<h1>Liste des demandes</h1>
<?php while (($demande = mysql_fetch_assoc($demandes)) !== false): ?>
<table>
<tr>
<th>ID</th>
<th>Nom</th>
<th>Prénom</th>
<th>Société</th>
<th>Adresse</th>
<th>Code Postal</th>
<th>Ville</th>
<th>Courriel</th>
<th>Tel</th>
<th>Choix</th>
<th>Message</th>
<th>Suppression</th>
</tr>
<tr>
<td><?php echo $demande["id"]; ?></td>
<td><a href="modification.php?id=<?php echo $demande["id"]; ?>"><?php echo
$demande["nom"]; ?></a></td>
<td><?php echo $demande["prenom"]; ?></td>
<td><?php echo $demande["societe"]; ?></td>
<td><?php echo $demande["adresse"]; ?></td>
<td><?php echo $demande["cp"]; ?></td>
<td><?php echo $demande["ville"]; ?></td>
<td><?php echo $demande["courriel"]; ?></td>
<td><?php echo $demande["tel"]; ?></td>
<td><?php echo $demande["choix"]; ?></td>
<td><?php echo $demande["message"]; ?></td>
<td><a href="suppression.php?id=<?php echo $demande["id"]; ?>">
X</a></td>
</tr>
</table>
<?php endwhile; ?>
</div>
Inserer nouveau contact :
<a href="insertion.php">Insertion</a><br/>
<br/>
<p>Pour <b>modifier un contact</b>, cliquer sur le nom correspondant</p>
</body>
</html>
<?php
mysql_close($liaison);
?>