Hi,
We have build a CMS application where site admin can manage layout from control panel and then we save the layout in our database, below is a sample layout info:
<table>
<tr>
<td>[Logo]</td>
</tr>
<tr>
<td>[Menu]</td>
</tr>
<tr>
<td>
<table>
<tr>
<td>[Ads]</td>
<td>[Content]</td>
<td>[Ads]</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>[Footer]</td>
</tr>
</table>
It can be seen from above HTML that we have inserted tokens like [Logo], [Menu], [Ads], etc.
Now while displayin ...
Go to the complete details ...