Boomerang membre qui tape avec ses poiles de nez
 Offline
Joined: 04 Aug 2007 Posts: 3,099
Localisation: USA Point(s): 3,353 Moyenne de points: 1.08
|
| |
 |
|
 |
Posted: Sat 8 Sep - 21:41 Post subject: [php] Problème pour créer un tableau |
|
|
Bonsoir,
alors je voudrais créer un tableau avec 11 cases de largeur.
Voici comment je procède :
| Code: |
<table style="width:560px;height:700px;background-image:url('./images/map.jpg');background-repeat:no-repeat;border-collapse:collapse;border:none;font-size:12px;">
<tr>
<?php
$i = 0;
while ($i <= 176) {
$i++;
if ($i % 12 == 0) {
?>
</tr><tr>
<?php
}
?>
<td width='46' height='46'>
<?php echo $i; ?>
</td>
<?php
}
?>
</tr>
</table>
|
et voici le problème :
Vous voyez après la case 11 ....
Quelqu'un à une solution pleaaaaze ?  _________________ Si vous voulez apprendre à jouer au poker contactez moi par MP, je vous donnerais un très bon lien ! 
|
|
 |
| |
 |
|
|