View Single Post
Old July 5th, 2004, 03:08 AM   #3 (permalink)
snoopy5
Ultimate Member
Verified Customer
 
Join Date: Sep 2002
Posts: 1,217
o.k., thanks, I found it. It was the line:

$price[$itemnum] = "\$" . number_format( $priceline, 2 );

I changed it to:

$price[$itemnum] = "€" . number_format( $priceline, 2 );


For the average price I changed earlier already in showproduct.php this line:

$avgprice = "$" . number_format( $avgprice, 2 );

to this line:

$avgprice = "€" . number_format( $avgprice, 2 );
snoopy5 is offline   Reply With Quote