<?PHP

header
("Content-Type: application/xml; charset=utf-8");

// Start Template
$tmpl = new patTemplate();
$tmpl->setBasedir'../templates' );
$tmpl->readTemplatesFromFile'ajax/searchsuggest.tpl' );
$tmpl->AddGlobalVars($GLOBAL);

$search = new search($_REQUEST['search']);
if(
$search->count 0){
    
$tmpl->addRows('SearchItem'$search->data);
}else{
    
$tmpl->setAttribute('SearchItem''visibility''hidden');
}

$tmpl->displayParsedTemplate();

?>