I searched it but I needed more infro.
<?php
define('IN_COPPERMINE', true);
require('include/init.inc.php');
pageheader();
pagefooter();
ob_end_flush();
?>
I got a few questions
Where do I put the HTML?
Where do I put the title of the name?
QuoteWhere do I put the HTML?
between pageheadr() & pagefooter() functions something like this:
<?php
define('IN_COPPERMINE', true);
require('include/init.inc.php');
pageheader();
?>
<table width="100%"><tr><td>This is HTML !!!</td></tr></table>
<?php
pagefooter();
ob_end_flush();
?>
QuoteWhere do I put the title of the name?
set it as argument for pageheader() function something like this
pageheader("custom title");
Thanks. Sorry for the trouble. :P