Hi, wenn ich mit smarty ein array füllen will
und diese im Template mit
ausgeben will, bekomme ich folgenden Fehler:
Könnt ihr mir helfen?
Mfg Markus
PHP-Code:
$sql = 'SELECT id, spielname FROM spiele';
$smarty->assign('spiel', $db->getAssoc($sql));
PHP-Code:
{foreach item=spiel from=$spiele}
<option value="{$spiel.id}">{$spiel.spielname}</option>
{/foreach}
PHP-Code:
Fatal error: Call to a member function on a non-object in /www/htdocs/cse/pages/headadmin.php on line 250
Mfg Markus
Kommentar