Utiliser Mysql avec php dans un tableau html
Fermé
xunil2003
Messages postés
766
Date d'inscription
mercredi 17 novembre 2004
Statut
Membre
Dernière intervention
29 septembre 2024
-
21 févr. 2010 à 12:41
xunil2003 Messages postés 766 Date d'inscription mercredi 17 novembre 2004 Statut Membre Dernière intervention 29 septembre 2024 - 21 févr. 2010 à 13:09
xunil2003 Messages postés 766 Date d'inscription mercredi 17 novembre 2004 Statut Membre Dernière intervention 29 septembre 2024 - 21 févr. 2010 à 13:09
A voir également:
- Utiliser Mysql avec php dans un tableau html
- Tableau croisé dynamique - Guide
- Utiliser chromecast - Guide
- Tableau ascii - Guide
- Comment faire un tableau - Guide
- Trier un tableau excel - Guide
2 réponses
raoullo
Messages postés
329
Date d'inscription
samedi 18 avril 2009
Statut
Membre
Dernière intervention
7 avril 2015
45
21 févr. 2010 à 12:45
21 févr. 2010 à 12:45
pour afficher une variables php dans du code html, il faut tout d'abord que ta page soit en .php et puis tout simplement a la place de metre une balise <p> ou <a> tu tape <?php echo $variable; ?>
xunil2003
Messages postés
766
Date d'inscription
mercredi 17 novembre 2004
Statut
Membre
Dernière intervention
29 septembre 2024
14
21 févr. 2010 à 13:09
21 févr. 2010 à 13:09
Rebonjour,
j'ai du mal m'exprimer, voila le code je j'ai réusi a faire fonctionner sur une colonne, evidament toute met page on l'extention PHP sinon elle ne pourai pas fonctionner sur wampserveur.
Le tout premier code que j'ai mis (ci haut desus), je les modifier pour afficher le resultat dans chaque colone de ma table Mysql, dans chaque colone de mon tableau html, mais je n'y arrive pas.
Merci, coordialement.
------------------------------------code--------------------------------------
<!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=iso-8859-1" />
<title>Document sans titre</title>
</head>
<body>
<?php
mysql_connect("localhost", "root", ""); // Connexion à MySQL
mysql_select_db("domotique"); // Sélection de la base de donnée
$reponse = mysql_query("SELECT nom_module FROM modules_x10");
?>
<table width="335" border="1">
<tr>
<th width="80" scope="col">nom</th>
<th width="50" scope="col">C.M.U </th>
<th width="50" scope="col">On</th>
<th width="30" scope="col">OFF</th>
<th width="36" scope="col">+</th>
<th width="49" scope="col">-</th>
</tr>
<tr>
<th scope="row"> </th>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<?php
while($result=mysql_fetch_assoc($reponse)) // tan qu'il y a des modules
{
?>
<tr>
<th scope="row"><?php echo $result["nom_module"]; ?></th>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<?php
} //toute la ligne est comprise dans la boucle while
?>
</table>
</body>
</html>
<?php
mysql_close(); // Fermeture de la connexion Mysql
?>
-----------------------------------------Fin du code---------------------------
j'ai du mal m'exprimer, voila le code je j'ai réusi a faire fonctionner sur une colonne, evidament toute met page on l'extention PHP sinon elle ne pourai pas fonctionner sur wampserveur.
Le tout premier code que j'ai mis (ci haut desus), je les modifier pour afficher le resultat dans chaque colone de ma table Mysql, dans chaque colone de mon tableau html, mais je n'y arrive pas.
Merci, coordialement.
------------------------------------code--------------------------------------
<!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=iso-8859-1" />
<title>Document sans titre</title>
</head>
<body>
<?php
mysql_connect("localhost", "root", ""); // Connexion à MySQL
mysql_select_db("domotique"); // Sélection de la base de donnée
$reponse = mysql_query("SELECT nom_module FROM modules_x10");
?>
<table width="335" border="1">
<tr>
<th width="80" scope="col">nom</th>
<th width="50" scope="col">C.M.U </th>
<th width="50" scope="col">On</th>
<th width="30" scope="col">OFF</th>
<th width="36" scope="col">+</th>
<th width="49" scope="col">-</th>
</tr>
<tr>
<th scope="row"> </th>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<?php
while($result=mysql_fetch_assoc($reponse)) // tan qu'il y a des modules
{
?>
<tr>
<th scope="row"><?php echo $result["nom_module"]; ?></th>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<?php
} //toute la ligne est comprise dans la boucle while
?>
</table>
</body>
</html>
<?php
mysql_close(); // Fermeture de la connexion Mysql
?>
-----------------------------------------Fin du code---------------------------