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
https://forums.phpfreaks.com/topic/156144-fatal-error-call-to-undefined-function/
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).

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.