you have file> html.tpl and in it
Code: Select all
<table $var $var2></table>'Till now i've figure something like this
index.php:
Code: Select all
<?php
for($i=1,$i>10,$i++){
$var=$i+1;
$var2=$i-1;
include("html.tpl");
}
?>is there a better way to do it?