Jump to content

Fatal error: Call to undefined function


hass1980

Recommended Posts

Hi

 

Im getting this error on my web page :

 

Fatal error: Call to undefined function products() in C:\wamp\www\cart\admin\products.php on line 23

 


<?php


// Include MySQL class
require_once('../inc/mysql.class.php');
// Include database connection
require_once('../inc/global.inc.php');
// Include functions
require_once('inc/functions.inc.php');
// Include functions
require_once('inc/product.inc.php');
// Start the session
session_start();

if(!isset($_SESSION['AdminID']))
{
     return header("location: myaccount.php?action=login");
     exit;
}

$array['products'] = 'selected';
siteHeader($array);
echo products();
siteFooter();
?>

 

Link to comment
Share on other sites

function products() is defined in product.inc.php

 

Are you sure about that. Because according to the error, it is not defined. I would verify that the product.inc.php is in the correct spot and has the code (meaning you were not editing a different file by accident).

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  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.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.