|
|
Overview : |
|
Technical approach : |
|
| Html side without TinyButStrong: | {section name=sec1 loop=$nbr} <tr>...</tr> {/section} |
|
| Php side: | $Obj->Do('sec1'); |
| Html side with TinyButStrong: | <tr>...[sec1;block=tr]...</tr> | |
| Php side: | $TBS->MergeBlock('sec1',$nbr) ; |
| Without TinyButStrong | With TinyButStrong | In visual mode | |
| <table border="1"> {section name=sec1} <tr> <td>hello</td> </tr> {/section } </table> |
<table border="1"> <tr> <td>hello[sec1;block=tr]</td> </tr> </table> |
|