Hi,
I've the following class that I wish to include in all my other classes, but when I use the include or include_once commands my PHP page fail.
<?php
/**
* Configuration class
*
* @author LennieDG
* 25 July 2009
*/
class CConfig
{
public static final $DB_HOST = "...";
public static final $DB_NAME = "...";
public static final $DB_USERNAME = "...";
public static final $DB_PASSWORD = "...";
}
?>