PHP expert |
|
Hey iedereen,
Ik wil graag een map maken net als dit:
http://img282.imageshack.us/img282/9366/map3oh.jpg
Nu heb ik deze code tekst:
<table border="0" cellspacing="1">
<tr>
<?php
for($y=0; $y < 20; $y++)
{
?>
<tr><?php
for($x=0; $x < 20; $x++)
{
?>
<td class="worldmap"> </td>
<?php
}
?>
</tr>
<?php
}
?>
</tr>
</table>
<table border="0" cellspacing="1"> <tr> <?php for($y=0; $y < 20; $y++) { ?> <tr><?php for($x=0; $x < 20; $x++) { ?> <td class="worldmap"> </td> <?php } ?> </tr> <?php } ?> </tr> </table>
Ik zou graag de velden een zelfstandig ID willen geven,
van links naar rechts, rij voor rij; dus:
01-02-03-04-05-06-07-08-09-10
11-12-13-14-15-16-17-18-19-20
etc.
Ook wil ik graag de coördinaten boven de tabel en links naast de tabel willen hebben staan. Beginnend bij 1 en eindigend bij 40.
|