ok, so I have another question involving constants. Lets say I have the following PHP and HTML code.
PHP:
define('DATE_SEP_CHAR','/'); |
HTML:
...[blk1.Date;frm="mm/dd/yyyy"]... |
Now though, I want to have the format for the date in the HTML side to be based on the constant defined above. Like if the user wanted to change DATE_SEP_CHAR to '-', it gets formatted as "mm-dd-yyyy". Is this possible and if so, how?