Hello,
I am hoping there is a way to place the number from top to bottom.
Here is a sample from the code in simple HTML
[code]
1 | 2 | 3 | 4 | 5 |
6 | 7 | 8 | 9 | 0 |
Result will be:
12345
67890
but I need is this one.
<table>
<tr>
<td>
<table border = 1>
<tr><td>1</td></tr>
<tr><td>2</td></tr>
<tr><td>3</td></tr>
<tr><td>4</td></tr>
<tr><td>5</td></tr>
</table>
</td>
<td>
<table border = 1>
<tr><td>6</td></tr>
<tr><td>7</td></tr>
<tr><td>8</td></tr>
<tr><td>9</td></tr>
<tr><td>0</td></tr>
</table>
</td>
</tr>
</table>
The result should be
1 6
2 7
3 8
4 9
5 0
Is this possible? I need the code because I will use it in PHP. Thanks in Advance