Hi, I'm working on creating an intranet, and HTML pages in order to consult a postgreSQL database. I naturally chosed php, and I decided to use the Fast Template class to separate the php code and the HTML.
Since It's possible to define Dynamic Blocks, I wonder if It's possible to include in the html a dynamic block into another one
I mean doing something like that in the "page.html":
<body>
<!-- BEGIN DYNAMIC BLOCK : BLOCK_MENUS -->
<table border="1">
<tr>
<td>{MENU TITLE}</td>
<td>title_column1</td>
<td>title_column2 </td>
<td>title_column3</td>
</tr>
<!-- BEGIN DYNAMIC BLOCK : BLOCK_ROWS -->
<tr>
<td>{FIELD1}</td>
<td>{FIELD2}</td>
<td>{FIELD3}</td>
<td>{FIELD4}</td>
</tr>
<!-- END DYNAMIC BLOCK : BLOCK_ROWS -->
</table>
<!-- END DYNAMIC BLOCK : BLOCK_MENUS -->
</body>
having several rows in several menus.
If anybody familiar with the templates could answer me...