Código:
Fatal error: Uncaught --> Smarty Compiler: Syntax error in template ".\templates\index.html" on line 9 "{foreach name=categorias form=$categorias item=categoria}" missing "from" attribute <-- thrown in C:\xampp\htdocs\smarty\libs\sysplugins\smarty_internal_templatecompilerbase.php on line 9
Código PHP:
<?php
include('libs/Smarty.class.php');
$categorias[0]["url"]="noticias.php";
$categorias[0]["categoria"]="Noticias";
$categorias[1]["url"]="deportes.php";
$categorias[1]["categoria"]="Deportes";
$titulo="Mi Web";
$html=new Smarty();
$html->assign("categorias", $categorias);
$html->assign("titulo", $titulo);
$html->display("index.html");
?>
Código HTML:
<!doctype html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>{$titulo}</title>
</head>
<body>
<h1>{$titulo}</h1>
{foreach name=categorias form=$categorias item=categoria}
<a href="{$categoria.url}" title="{$categoria.categoria}">{$categoria.categoria}</a>
{\foreach}
</body>
</html>