Date: 02/13/03
- Next message: Matt Hillebrand: "RE: [PHP-WIN] basic variable question"
- Previous message: Paul Dymecki: "[PHP-WIN] Re:Subject: Need Help with Classes"
- Next in thread: Matt Hillebrand: "RE: [PHP-WIN] basic variable question"
- Reply: Matt Hillebrand: "RE: [PHP-WIN] basic variable question"
- Reply: Matt Hillebrand: "RE: [PHP-WIN] basic variable question"
- Reply: Matt Hillebrand: "RE: [PHP-WIN] basic variable question"
- Reply: Uttam: "[PHP-WIN] RE: basic variable question"
- Maybe reply: Svensson, B.A.T. (HKG): "FW: [PHP-WIN] basic variable question"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Hi everyone. Why does my code work when I enter just 1 for the quantity, but only returns $1.10 when I enter a quantity of 2 or more?
$totalqty = 0.00;
$totalamount = 0.00;
define("HALLTABLE", 800);
$totalqty = $_POST["hallqty"]; //quantity
$totalamount = $_POST["hallqty"] * HALLTABLE; //total cost
$totalamount = number_format($totalamount, 2);
echo $totalamount;
echo "<br>\n";
echo "Items ordered: ".$totalqty."<br>\n";
echo "Subtotal: $".$totalamount."<br>\n";
$taxrate = 0.10; // local sales tax is %10
$totalamount = $totalamount * (1 + $taxrate);
$totalamount = number_format($totalamount, 2);
echo "<br>\n";
echo "Total including tax: $".$totalamount."<br>\n";
----------------
"forget your lust for the rich man's gold. All that you need, is in your soul. You can do this if you try. All that I want for you my son, is to be satisfied"
~ Lynard Skynard
- Next message: Matt Hillebrand: "RE: [PHP-WIN] basic variable question"
- Previous message: Paul Dymecki: "[PHP-WIN] Re:Subject: Need Help with Classes"
- Next in thread: Matt Hillebrand: "RE: [PHP-WIN] basic variable question"
- Reply: Matt Hillebrand: "RE: [PHP-WIN] basic variable question"
- Reply: Matt Hillebrand: "RE: [PHP-WIN] basic variable question"
- Reply: Matt Hillebrand: "RE: [PHP-WIN] basic variable question"
- Reply: Uttam: "[PHP-WIN] RE: basic variable question"
- Maybe reply: Svensson, B.A.T. (HKG): "FW: [PHP-WIN] basic variable question"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

