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. Quote
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. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.