Código PHP:
<?php
include("./contenedor/contenedor.php");
$bd = new bd();
$query1 = new query('SELECT nombre FROM categorias ORDER BY id ASC',$bd);
foreach ($query1->v as $fila)
$var = $fila->d . ' - ' . $fila->nombre;
// instancia con nombre del theme.
$template = new plantillas("index");
// variables a sustituir.
$input = array("{categorias}", "{footer}");
// Valores reales.
$output = array($var, "Juegos Online");
// cargamos la plantilla post y asignamos los valores.
$template->cargarPlantilla($input, $output, "index");
// mostramos la plantilla.
$template->mostrarPlantilla();
?>
Gracias...
Saludos..!