Can anyone help me with this problem.
What i'd like to do is create a 5x5 table and inside each cell there will be a checkbox.
Column 1 will contain checkboxes with names 01, 02, 03, 04, 05
Column 2 will contain checkboxes with names 06, 07, 08, 09, 10 and so on
I'd like to achieve this using multidimensional arrays - i've put the beginnings of my code below but am unsure as to how to proceed. Thanks.
<html>
<table border="1">
<?php
for ($k=1; $k<=25; $k++) {
for ($i=1; $i<=5; $i++) {
for ($j=1; $j<=5; $j++) {
$a[$i][$j] = $k;
}
}
}
?>
</table>
</body>
<body>
</body>
</html>