Can't import defined variables?
variables.php:
define("MY_VERSION", 1.1);
printoff.php:
obstart();
include './variables.php';
ob_end_clean();
echo "MY_VERSION"; //should print MY_VERSION
echo "My_version"; //should print 1.1 Should note the error I get is "Use of undefined constant"
-
IronMike -
Thanks - 1 reply
{{ DiscussionBoard.errors[6560522].message }}-
Brandon Tanner -
Thanks
Signature{{ DiscussionBoard.errors[6560617].message }} -
-