I'm trying to feed a constant to a function, but it keeps taking it as plain text....
How can I make it understand that HAHAHA is a constant and not text?
e.g.
define ("HAHAHA", "HEHEHE");
function LAUGH($TYPE){
echo "$TYPE"; /* Prints HAHAHA
}
function (HAHAHA);