I have an old osCommerce site that was PHP4, now running on PHP5. Named constants defined with define()
are being evaluated incorrectly:
$string = '<a href="http://www.oscommerce.com" target="_blank">' . BOX_ENTRY_SUPPORT_SITE . '</a><br>';
will show as BOX_ENTRY_SUPPORT_SITE
, not the value placeed in BOX_ENTRY_SUPPORT_SITE
.
Something needs to be changed in php.ini
?