View Single Post
  #10  
Old 06-08-2005, 02:58 PM
  Jon's Avatar 
Jon Jon is offline
 

X-Guru
  
Join Date: Oct 2002
Location: Vancouver, Canada
Posts: 4,200
 

Default

K, great, that was confusing for me

---------------

The code syntax:

Code:
<?=

is equivalent to

Code:
<? echo

so you'd have to use:

Code:
<?php echo number_format($MINICART["total_cost"], 2, '.', ','); ?>

---------------

I pulled the mini-cart information from include/minicart.php and then added some additional code to pull additional info, removed all the smarty references and instead echo'd the information directly.
Reply With Quote