ciao a tutti,
ho un file index.php che genera un guestbook...come posso inserirlo in un div...
<div id="content">
<?php
define("IN_GB-XML", true);
// Require the functions (and config)
require_once("include.php");
if ($_REQUEST["spage"] == "send")
{
require_once("send.php");
}
else
{
require_once("guestbook.php");
}
?>
</div>
non mi produce nulla in output mentre index.php ha tutto il contenuto...
come mai?????
grazie