Hi
How I can show the data in Options from database via FastTemplate ?
this my code :
$obj =new FastTemplate("./tmpl/");
//assign names for template files
$obj->define(array(
"header"=>"header.tpl",
"form"=>"form.tpl",
"footer"=>"footer.tpl"
));
connects($DB,$DBuser,$DBpass,$DBname);
$list = mysql_query("select Acatid, Acatname from Acat/order by Acatname/");
col();
while(list($tcat_id, $cat) = mysql_fetch_row($list)) {
$obj->assign(array(
"CO"=>$cat,
"ACAT_ID"=>$tcat_id
));
}
The problem is the data which query not appeared completly .
Thanks