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)
echo $fila->d,' - ',$fila->nombre;
// instancia con nombre del theme.
$template = new plantillas("index");
// variables a sustituir.
$input = array("{categorias}", "{footer}");
// Valores reales.
$output = array(AQUI MOSTRAR EL RESULTADO DEL QUERY, "Juegos Online");
// cargamos la plantilla post y asignamos los valores.
$template->cargarPlantilla($input, $output, "index");
// mostramos la plantilla.
$template->mostrarPlantilla();
?>
Como le asigo a una variable un ECHO?
Código PHP:
$var= echo $fila->d,' - ',$fila->nombre;
// y despues la muestro asi?
$output = array($var, "Juegos Online");
espero que puedan ayudarme...
Saludos..!