Jump to content

Recommended Posts

Posted

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. 

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...