Page 1 of 1

Templating assistance

Posted: Wed Jun 08, 2005 9:43 am
by facets
Hi Gang,

Code: Select all

include "i_template.php";

$content = "";

  $tmpl = new i_template();
  $tmpl->PAGE_TITLE = "Specification";
  $tmpl->CONTENT_HEADING = "Specification";
  $tmpl->print_template("main.template");

Posted: Wed Jun 08, 2005 11:09 am
by thomas777neo
This is not an error. It merely says that there are certain variables that haven't been declared yet.

Either declare the stipulated variables or turn the E_NOTICE off in the php.ini if you have access to it, the restart your webserver.