[PHP] Création tableau particulier
Résolu/Fermé
ben85350
Messages postés
610
Date d'inscription
vendredi 30 mai 2008
Statut
Membre
Dernière intervention
2 avril 2013
-
16 oct. 2008 à 14:43
webmaster09 Messages postés 398 Date d'inscription mercredi 3 septembre 2008 Statut Membre Dernière intervention 22 avril 2010 - 16 oct. 2008 à 15:02
webmaster09 Messages postés 398 Date d'inscription mercredi 3 septembre 2008 Statut Membre Dernière intervention 22 avril 2010 - 16 oct. 2008 à 15:02
A voir également:
- [PHP] Création tableau particulier
- Tableau croisé dynamique - Guide
- Site de vente en ligne particulier - Guide
- Tableau ascii - Guide
- Tableau word - Guide
- Creation compte gmail - Guide
4 réponses
webmaster09
Messages postés
398
Date d'inscription
mercredi 3 septembre 2008
Statut
Membre
Dernière intervention
22 avril 2010
29
16 oct. 2008 à 14:47
16 oct. 2008 à 14:47
c'est pas dure de cree un tableu exemple:
<th>Age</th>
<th>Pays</th>
</tr>
</thead>
<tfoot> <!-- Pied de tableau -->
<tr>
<th>Nom</th>
<th>Age</th>
<th>Pays</th>
</tr>
</tfoot>
<tbody> <!-- Corps du tableau -->
<tr>
<td>blablabla</td>
<td>blablabla</td>
<td>blablabla</td>
</tr>
<tr>
<td>Michelle</td>
<td>26 ans</td>
<td>Etats-Unis</td>
</tr>
<tr>
<td>François</td>
<td>43 ans</td>
<td>France</td>
</tr>
<tr>
<td>Martine</td>
<td>34 ans</td>
<td>France</td>
</tr>
<tr>
<td>Jonathan</td>
<td>13 ans</td>
<td>Australie</td>
</tr>
<tr>
<td>Xu</td>
<td>19 ans</td>
<td>Chine</td>
</tr>
</tbody>
</table>
etc etc etc...
<th>Age</th>
<th>Pays</th>
</tr>
</thead>
<tfoot> <!-- Pied de tableau -->
<tr>
<th>Nom</th>
<th>Age</th>
<th>Pays</th>
</tr>
</tfoot>
<tbody> <!-- Corps du tableau -->
<tr>
<td>blablabla</td>
<td>blablabla</td>
<td>blablabla</td>
</tr>
<tr>
<td>Michelle</td>
<td>26 ans</td>
<td>Etats-Unis</td>
</tr>
<tr>
<td>François</td>
<td>43 ans</td>
<td>France</td>
</tr>
<tr>
<td>Martine</td>
<td>34 ans</td>
<td>France</td>
</tr>
<tr>
<td>Jonathan</td>
<td>13 ans</td>
<td>Australie</td>
</tr>
<tr>
<td>Xu</td>
<td>19 ans</td>
<td>Chine</td>
</tr>
</tbody>
</table>
etc etc etc...
webmaster09
Messages postés
398
Date d'inscription
mercredi 3 septembre 2008
Statut
Membre
Dernière intervention
22 avril 2010
29
16 oct. 2008 à 14:55
16 oct. 2008 à 14:55
ok ok ,desoler
ben85350
Messages postés
610
Date d'inscription
vendredi 30 mai 2008
Statut
Membre
Dernière intervention
2 avril 2013
27
16 oct. 2008 à 15:01
16 oct. 2008 à 15:01
Voici la solution pour ceux a qui ça pourrait intéresser :
Merci quand même webmaster09 ^^
<?php $debut = 64; $fin = 162; $tab=range($debut,$fin); ?>
Merci quand même webmaster09 ^^
webmaster09
Messages postés
398
Date d'inscription
mercredi 3 septembre 2008
Statut
Membre
Dernière intervention
22 avril 2010
29
16 oct. 2008 à 15:02
16 oct. 2008 à 15:02
ya pas de quoi
16 oct. 2008 à 14:54
je veut une fonction PHP(les bornes sont des variables aléatoires), pas un code html ...
apparemment le fonction range semble faire l'affaire.