Parseartags lo tengo tal que asi dentro de funciones.php:
<?php
function mostrarTemplate($tema, $variables)
{
//var_dump($variables);
}
function parsearTags($mensaje)
{
$mensaje = str_replace("[citar]", "<blockquote><hr width='100%' size='2'>", $mensaje); $mensaje = str_replace("[/citar]", "<hr width='100%' size='2'></blockquote>", $mensaje); return $mensaje;
}
?>
Lo demás..pues configuracion.php contiene los parámetros de enlace a base de datos y en los html dudo mucho que esté el problema. Te dejo también el código que tengo en agregar.php que se encarga de postear los mensajes.
<?php
require('funciones.php');
$id = $_GET["id"];
$citar = $_GET["citar"];
$row = array("id" => $id); if($citar==1)
{
require('configuracion.php');
$sql = "SELECT titulo, mensaje, identificador AS id FROM foro WHERE id='$id'";
if($row["id"]==0) $row["id"]=$id;
}
include('header.html');
mostrarTemplate($template, $row);
include('footer.html');
?>
Un saludo y gracias