echo "<p>" . $VM_LANG->_('PHPSHOP_COUPON_ENTER_HERE') . '<br /></p>';
or
echo "<p>" , $VM_LANG->_('PHPSHOP_COUPON_ENTER_HERE') , '<br /></p>';
The later is only possible with echo (not print) and theoretically saves some computation time, as the string don't need to be concatenated together. Probably won't mater 99% of the time, but it's nice to know about.
The first says
- Attach (concatenate) "<p>" to $VM_LANG->_('PHPSHOP_COUPON_ENTER_HERE')
- Attach the rusult of 1 to '<br /></p>'
- echo out the result of 2
While the later says
- echo out "<p>"
- echo out $VM_LANG->_('PHPSHOP_COUPON_ENTER_HERE')
- echo out '<br /></p>';
A single concatenation will almost always take less processing power than an echo