Jump to content

Money formatting


kawaii1001

Recommended Posts


Could you please tell me how to make $Price below format as a money value.

<?php
$preowned = simplexml_load_file('file.xml');
foreach ($preowned as $preownedinfo):
$ADID=$preownedinfo->ADID;
$CompanyID=$preownedinfo->CompanyID;
$Category=$preownedinfo->Category;
$StockNumber=$preownedinfo->StockNumber;
$Year=$preownedinfo->Yrs;
$Make=$preownedinfo->Make;
$Model=$preownedinfo->Model;
$Trim=$preownedinfo->Trim;
$Odometer=$preownedinfo->ExtraField->ContentEN->Odometer;
$ExteriorColor=$preownedinfo->ExtraField->ContentEN->ExteriorColor;
$InteriorColor=$preownedinfo->ExtraField->ContentEN->InteriorColor;
$Engine=$preownedinfo->ExtraField->ContentEN->Engine;
$Transmission=$preownedinfo->ExtraField->ContentEN->Transmission;
$Price=$preownedinfo->Price;
$Options=$preownedinfo->ExtraField->ContentEN->Options;
$AdDescription=$preownedinfo->AdDescription;
$MainPhoto=$preownedinfo->MainPhoto;
$AdditionalPhoto=$preownedinfo->AdditionalPhoto;
$Doors=$preownedinfo->ExtraField->ContentEN->Doors;

 

Link to comment
https://forums.phpfreaks.com/topic/281638-money-formatting/
Share on other sites

Hmmmm. Still getting the same message.  I have it set like this:

 <?php
    $preowned = simplexml_load_file('file.xml');
     foreach ($preowned as $preownedinfo):
    $ADID=$preownedinfo->ADID;
    $CompanyID=$preownedinfo->CompanyID;
    $Category=$preownedinfo->Category;
    $StockNumber=$preownedinfo->StockNumber;
        $Year=$preownedinfo->Yrs;
        $Make=$preownedinfo->Make;
        $Model=$preownedinfo->Model;
        $Trim=$preownedinfo->Trim;
        $Odometer=$preownedinfo->ExtraField->ContentEN->Odometer;
        $ExteriorColor=$preownedinfo->ExtraField->ContentEN->ExteriorColor;
        $InteriorColor=$preownedinfo->ExtraField->ContentEN->InteriorColor;
        $Engine=$preownedinfo->ExtraField->ContentEN->Engine;
        $Transmission=$preownedinfo->ExtraField->ContentEN->Transmission;
        $Price=$preownedinfo->Price;
        $Options=$preownedinfo->ExtraField->ContentEN->Options;
        $AdDescription=$preownedinfo->AdDescription;
        $MainPhoto=$preownedinfo->MainPhoto;
        $AdditionalPhoto=$preownedinfo->AdditionalPhoto;
        $Doors=$preownedinfo->ExtraField->ContentEN->Doors;
        $price = '$' . money_format($Price, 2, '.', ',');
Link to comment
https://forums.phpfreaks.com/topic/281638-money-formatting/#findComment-1447185
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.