Comment crié un tableau 2 dimension en php
Fermé
tjravril
Messages postés
14
Date d'inscription
vendredi 26 octobre 2007
Statut
Membre
Dernière intervention
29 mai 2008
-
26 oct. 2007 à 20:30
Mathias - 13 févr. 2012 à 12:45
Mathias - 13 févr. 2012 à 12:45
A voir également:
- Php tableau 2 dimensions
- Tableau croisé dynamique - Guide
- Tableau ascii - Guide
- Tableau word - Guide
- Trier tableau excel - Guide
- Comment imprimer un tableau excel sur une seule page - Guide
5 réponses
Bonsoir,
Essayes ça:
Essayes ça:
<?php //generation $matrice=array(); for($l=0;$l<10;$l++){ for($c=0;$c<10;$c++){ srand(); $rand = rand(0, 100);// la on règle le mini maxi $matrice[$l][$c]=$rand; } } //affichage ?> <html> <table border=6 cellspacing=6 cellpadding=10> <?php // titre colonne echo "<tr><td> </td>"; for($c=0;$c<10;$c++){ echo "<td><b>Col $c</b></td>"; } // for($l=0;$l<10;$l++){ echo "<tr><td><b>Ligne $l</b></td>";// titre ligne for($c=0;$c<10;$c++){ echo "<td>"; echo $matrice[$l][$c]; echo "</td>"; } echo "</tr>"; } ?> </table> </html>
tjravril
Messages postés
14
Date d'inscription
vendredi 26 octobre 2007
Statut
Membre
Dernière intervention
29 mai 2008
2
28 oct. 2007 à 02:05
28 oct. 2007 à 02:05
merci cher Alain42 sa marche trop bien avec moi merci encore une fois
tjravril
Messages postés
14
Date d'inscription
vendredi 26 octobre 2007
Statut
Membre
Dernière intervention
29 mai 2008
2
5 nov. 2007 à 00:03
5 nov. 2007 à 00:03
merci
Vous n’avez pas trouvé la réponse que vous recherchez ?
Posez votre question
28 oct. 2007 à 02:11
echo "<tr><td>& nbsp ;</td>";
for($c=0;$c<10;$c++){
echo "<td><b>Col $c</b></td>";
for($l=0;$l<10;$l++){
echo "<tr><td><b>Ligne$l</b></td>";// titre ligne
for($c=0;$c<10;$c++){
echo "<td>";
echo $matrice[$l][$c];
echo "</td>";
13 févr. 2012 à 12:45