Adding Pages
There are 2 ways to add pages.
- Open base.php and enter your content directly in the
file. Save the file as
another name with a .php extension.
- Create a template file in the template folder you are
using and enter the content. Then open base.php, add an include statement to
include the
template,
and save as another name with a .php extension..
Example:
include ("templates/$template/mytemplate.php");
The header, menus, and footer will already be included by the code in
base.php.