Jump to content

OOP shopping cart: Undefined type" problem (but the type is defined)


Demetri

Recommended Posts

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. 
Link to comment
Share on other sites

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.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...