3
Quote:
DCrussader wrote:
damn newbb
definitions
this
define('_MD_XFGB_CONFIRM_CODE', "Confirm verification code");
into this
define('_MD_XFGB_CONFIRM_CODE',"Confirm verification code");
I'm beginner in PHP - can't see problem here ...
My understanding is
1. fastest one for PHP interpreter
define('_MD_XFGB_CONFIRM_CODE','Confirm verification code');
2. good looking and easy to edit/copy/paste/'look for' part of code ( and not slower for PHP, still )
define( '_MD_XFGB_CONFIRM_CODE', 'Confirm verification code' ) ;
3. "" are useful with variables inside ..