Basically, if you check over the HTML code, it is inserting the "row 1, cell 1" "row 1, cell 2" as data; what I am trying to accomplish here is that, using this statement:
[table (=head if needs title)] Data 1 | Data 2 [press enter to go to the next line or terminate this row]
Data 1.1 | Data 2.1 [press enter again]
Data 1.2 | Data 2.2[/ table]
Gets to print this:
With the data the user has entered, obviously; therefore, I don't see a need to use php whatsoever if this is some simple HTML code that should work, as, basically, the HTML code for the table above is:
Code:
<table border="1">
<tr>
<td>Data 1</td>
<td>Data 2</td>
</tr>
<tr>
<td>Data 1.1</td>
<td>Data 2.1</td>
</tr>
<tr>
<td>Data 1.2</td>
<td>Data 2.2</td>
</tr>
</table>