ich bin gerade daran ein Modul zu schreiben.
Ich habe ein Template mit folgendem Inhalt:
Code: Alles auswählen
<input name="{NAME}" type="text" value="{NAMEPOST}">
Code: Alles auswählen
$tpl->reset;
$tpl->set('s', NAME, "Name");
$tpl->set('d', NAMEPOST, $_POST["NAMEPOST"]);
...