Im getting an error at the class' __construct, says:
Notice: Undefined variable: DEFAULT_TOP_PAGE_ID in classes.php on line XY.
Here is the code:
// consts.php
<?php
$DEFAULT_TOP_PAGE_ID = "top_";
...
// classes.php
<?php
error_reporting (E_ALL);
require_once("consts.php");
class cSiteManager {
public $top_page_ID;
public function __construct() {
$this->top_page_ID = $DEFAULT_TOP_PAGE_ID;
...
Can anyone tell me where the problem lies?
Variables have scope. If you're trying to use a variable inside a function it will be local to the function. To use one from outside the function you need to declare it as global.
In this case I think you probably need a definition:
then