Hello,
I once heard it's good to have one class with all your application constants so that you have only one location with all your constants.
I Tried to do it this way:
class constants{
define("EH_MAILER",1);
}
and
class constants{
const EH_MAILER =1;
}
But both ways it doesn't work. Any suggestions?