View Single Post
  #9  
Old 06-08-2005, 01:54 PM
 
grnyj93 grnyj93 is offline
 

Advanced Member
  
Join Date: Nov 2004
Location: US
Posts: 38
 

Default

Another question:

What is the syntax here?
Code:
<?= number_format($MINICART["total_cost"], 2, '.', ','); ?>
I assumed it was php but when I changed it to
Code:
<?php = number_format($MINICART["total_cost"], 2, '.', ','); ?>
It threw and error about the '=' so I changed it to
Code:
<?php number_format($MINICART["total_cost"], 2, '.', ','); ?>
and it didn't return anything.

Why?
__________________
x-cart 4.0.13
Reply With Quote