Use this:
PHP Code:
if($action=="voir") {
$voiragendas=$DB_site->query("SELECT * FROM agenda");
while($voiragenda=$DB_site->fetch_array($voiragendas)) {
if($voiragenda[username]==$bbuserinfo[username]) {
eval("\$listerappel.= \"".gettemplate('agenda_listerappels')."\";");
$trouve="1";
}
}
if($listerappel=="") {
$listerappel="Aucun Rappel";
}
eval("dooutput(\"".gettemplate("afficheagenda")."\");");
}
Templates must always be evaled
after the php code for them.