| 
<html>
<head>
 <title>{title}</title>
 </head>
 
 <body>
 You can have as many dinamic rows in template as you want.<br>
 
 <form action="{PHP_SELF}" method="post" name="form" id="form">
 
 <tmpl:row_checkbox>
 <input type="checkbox" name="checkbox" value="{value}">{caption}<br>
 </tmpl:row_checkbox>
 
 <br><br>
 <select name="select">
 <tmpl:row_select>
 <option value="{value}">{caption}</option>
 </tmpl:row_select>
 </select>
 <br><br>
 
 <input type="submit" name="submit" value="Submit">
 
 </form>
 
 </body>
 </html>
 
 |