Demetri Posted December 18, 2020 Report Posted December 18, 2020 Following the shopping cart tutorial and encountered a problem. (login.php file) <?php include("models/m_template.php"); $Template = new Template(); //Problem is here "Undefined type "Template" $Template->load("views/v_login.php"); (Template class file) <? //Template Class - handless all templating tasks (displaying templates, alerts, errors) class Template { //Constructor function __construct() {} //Functions function load($url) { include($url); } } Tbh, not a clue why I'm getting this error.
administrator Posted December 22, 2020 Report Posted December 22, 2020 Is the type defined in the include file? If so, be sure the include is at the very top of the page.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now