
Originally Posted by
JimmyV
How are you not throwing dozens of errors on the lack of quotes around all of these things like this ENTRY_AMOUNT_APPLIED_CUST v this 'ENTRY_AMOUNT_APPLIED_CUST' all throughout all these files???
Anyway looks very similar at least I know I wasn't nuts with my solutions.
When it's defined you use the quotes like
Code:
define('ENTRY_AMOUNT_APPLIED_CUST', 'Amount Applied:');
but when you output the define you just do
Code:
echo ENTRY_AMOUNT_APPLIED_CUST;
If you put quotes around it like
Code:
echo 'ENTRY_AMOUNT_APPLIED_CUST';
then it will literally echo ENTRY_AMOUNT_APPLIED_CUST to the screen.
Bookmarks