php hjälp - enkelt problem för den vise.

Permalänk
Medlem

php hjälp - enkelt problem för den vise.

Hejsan försöker kalkulerar rabbat på ett visst pris.
Så ifall $pOffer > 1 så vill jag att 5% rabbat ska avdras.
Tänkte att en IF statment skulle funka.

list($ProductID,$pName, $pDescription, $pPrice, $pOffer) = mysql_fetch_row($result); //calculate basic discount.. if ($pOffer > 0){ $pPrice = $pPrice - $pPrice * 0.05; }

Men den bara ignoreras ?

if(mysql_num_rows($result) > 0) { list($ProductID,$pName, $pDescription, $pPrice, $pOffer) = mysql_fetch_row($result); //calculate basic discount.. if ($pOffer > 0){ $pPrice = $pPrice - $pPrice * 0.05; } $total = $total + $pPrice; //add to the total cost echo "<tr>"; //show this information in table cells echo "<td align=\"center\">$name</td>"; //along with a 'remove' link next to the quantity - which links to this page, but with an action of remove, and the id of the current product echo "<td align=\"center\"> <a href=\"$_SERVER[PHP_SELF]?action=remove&id=$ProductID\">Remove</a></td>"; echo "</tr>"; echo "<tr>"; //show this information in table cells echo "<td align=\"center\">$pName</td>"; //echo product echo "<td align=\"center\">$pPrice</td>"; echo "</tr>"; }

Vore jätte tacksam ifall någon kan hjälpa mig.

Mvh,

Visa signatur

AMD OPTERON athlon 3800 x2. DFI LANPARTY nforce 4ULTRA D, 2x1 gig twinmos Chassi Themlake 3,3| GC = Powercoler x850 XT Vivo, Logitech G15, Aiwa surround System, NEC DVD Burner, 1 x 1 x 200 gig 1x500 gigmaxtor SATA 1, 1 x180 gig Western Digital 1x320 western

Permalänk
Medlem

Verkar vara ett logikproblem då du skriver att villkoret är "$pOffer > 1" men det du har kodat är "$pOffer > 0".

Om det fortfarande är rätt villkor...

Kolla varför if-satsen ignoreras. Alltså, kontrollera vad $pOffer är innan if-satsen.

Visa signatur

ηλί, ηλί, λαμά σαβαχθανί!?

Permalänk
Medlem

Tack så jätte mycket för hjälpen hade glömt och lägga in $pOffer i SQL query.

Visa signatur

AMD OPTERON athlon 3800 x2. DFI LANPARTY nforce 4ULTRA D, 2x1 gig twinmos Chassi Themlake 3,3| GC = Powercoler x850 XT Vivo, Logitech G15, Aiwa surround System, NEC DVD Burner, 1 x 1 x 200 gig 1x500 gigmaxtor SATA 1, 1 x180 gig Western Digital 1x320 western