<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>TestWeb</title>
<style type="text/css">
table {
border: medium solid #6495ed;
border-collapse: collapse;
width: 50%;
}
th {
font-family: monospace;
border: thin solid #000;
width: 50%;
padding: 5px;
background-color: #6495ed;
}
td {
font-family: sans-serif;
border: thin solid #000;
width: 50%;
padding: 5px;
text-align: center;
background-color: #fff;
}
caption {
font-family: sans-serif;
color:#fff;
}
body {
background-color: #999;
text-align: center;
}
</style>
</head>
<body>
<p><a href="/index.html"><img src="back.png" width="81" height="95" /></a>
</p>
<p> <?php
// On se connecte au serveur de bases de données.
// Adapter le nom d'hote où se trouve le serveur mysql
$lienBD = mysqli_init();
mysqli_real_connect($lienBD, ', "", ", '')
or die('Impossible de se connecter à mysql (): ' . mysql_error());
echo '';
// Récupération de toutes les adresses (requête SQL) :
$requete = 'SELECT * FROM formulaire';
$result = mysqli_query($lienBD, $requete) or die('Query failed: ' . mysql_error());
// Affichage des résultats
echo "<table>\n";
// en-tête de la table :
echo "\t<tr>\n";
echo "\t\t<th>Nom</th>\n";
echo "\t\t<th>Groupe</th>\n";
echo "\t\t<th>Confirm.</th>\n";
echo "\t\t<th>Choix 1</th>\n";
echo "\t\t<th>Choix 2</th>\n";
echo "\t\t<th>Choix 3</th>\n";
echo "\t\t<th>Choix 4</th>\n";
echo "\t\t<th>Choix 5</th>\n";
echo "\t\t<th>Choix 6</th>\n";
echo "\t\t<th>Choix 7</th>\n";
echo "\t\t<th>Choix 8</th>\n";
echo "\t\t<th>Choix 9</th>\n";
echo "\t\t<th>Choix 10</th>\n";
echo "\t\t<th>Choix 11</th>\n";
echo "\t\t<th>Choix 12</th>\n";
echo "\t\t<th>Choix 13</th>\n";
echo "\t\t<th>Choix 14</th>\n";
echo "\t\t<th>Choix 15</th>\n";
echo "\t\t<th>Choix 16</th>\n";
echo "\t\t<th>Choix 17</th>\n";
echo "\t\t<th>Choix 18</th>\n";
echo "\t</tr>\n";
// Récupération de chaque ligne du résultat de la requête
// avec des indices associatifs (chaînes de caractères)
while ($ligneResReq = mysqli_fetch_array($result, MYSQL_ASSOC)) {
echo "\t<tr>\n";
// affichage de la ligne
echo "<td>".$ligneResReq['nom']."</td>";
echo "<td>".$ligneResReq['groupe']."</td>";
echo "<td>".$ligneResReq['confirm']."</td>";
echo "<td>".$ligneResReq['groupe1']."</td>";
echo "<td>".$ligneResReq['groupe2']."</td>";
echo "<td>".$ligneResReq['groupe3']."</td>";
echo "<td>".$ligneResReq['groupe4']."</td>";
echo "<td>".$ligneResReq['groupe5']."</td>";
echo "<td>".$ligneResReq['groupe6']."</td>";
echo "<td>".$ligneResReq['groupe7']."</td>";
echo "<td>".$ligneResReq['groupe8']."</td>";
echo "<td>".$ligneResReq['groupe9']."</td>";
echo "<td>".$ligneResReq['groupe10']."</td>";
echo "<td>".$ligneResReq['groupe11']."</td>";
echo "<td>".$ligneResReq['groupe12']."</td>";
echo "<td>".$ligneResReq['groupe13']."</td>";
echo "<td>".$ligneResReq['groupe14']."</td>";
echo "<td>".$ligneResReq['groupe15']."</td>";
echo "<td>".$ligneResReq['groupe16']."</td>";
echo "<td>".$ligneResReq['groupe17']."</td>";
echo "<td>".$ligneResReq['groupe18']."</td>";
echo "\t</tr>\n";
}
echo "</table>\n";
// Libération des résultats en mémoire
mysqli_free_result($result);
// fermeture de la connection
mysqli_close($lienBD);
?></p>
</body>
</html>
table { border: medium solid #6495ed; border-collapse: collapse; width: 50%; } th { font-family: monospace; border: thin solid #000; width: 50%; padding: 5px; background-color: #6495ed; } td { font-family: sans-serif; border: thin solid #000; width: 50%; padding: 5px; text-align: center; background-color: #fff; } caption { font-family: sans-serif; color:#fff; } body { background-color: #999; text-align: center; }
show create formulaire
Une table people (id_user,nom_user,....)
Une table groupes (id_groupe,nom_groupe)
Une table formulaire (id_formulaire,id_user,id_groupe)
Une table Choix (id_choix,id_formulaire,libelle_item...)
"./images/canada.png"
Vous n’avez pas trouvé la réponse que vous recherchez ?
Posez votre question$pays = $ligneResReq['groupe1']; switch ($pays){ case "Canada": $imgPays = "./images/canada.png"; break; case "France": $imgPays = "./images/france.png"; break; case else: $img=""; break; } $image = isset($img) && $img !='' ?"<img src='".$img."' title='".$pays."'>" :''; echo "<td>".$image."</td>";