Code
<?php
// initialize the PostNuke environment
include'includes/pnAPI.php';
pnInit();
// include the header
include('header.php');
// open a table for your content
OpenTable();
?>
<!-- html data goes here -->
my content
<!-- html data ends here -->
<?php
// close the table
CloseTable();
// include the footer
include('footer.php');
?>
// initialize the PostNuke environment
include'includes/pnAPI.php';
pnInit();
// include the header
include('header.php');
// open a table for your content
OpenTable();
?>
<!-- html data goes here -->
my content
<!-- html data ends here -->
<?php
// close the table
CloseTable();
// include the footer
include('footer.php');
?>
Or am I just using it wrong with the new framework?
