Hi to all! Can someone help me about this concept..
I attached here a jpeg file of what I want to become an output.
For the output, i simply want to draw a table that looks like a bus seat layout.
So far, here's what i've got:
<table border="1" cellpadding="20">
<?php
for($i=0; $i<14; $i++){
echo "<tr>";
for($x=0; $x<5; $x++){
echo "<td> </td>";
}
echo "</tr>";
}
?>
</table>
I want it to have a number like on the attached jpeg file.
Is this possible with php(For Loop)?
Thanks!