what are the differences between these
<?php const HELLO = 'Hello World!' ;
<?php if ( ! defined( 'HELLO' ) ) define( 'HELLO' , 'Hello World!' ) ;
one faster than the other or something or is the first just a lazy way of declaring? :queasy:
You could read the PHP manual on constants.
i guess i didnt look hard enough i did search the manual my bad.