Jump to content

if ($something > X) {foreach (> X) {$something += Z}}


FlashDancer

Recommended Posts

today i programmed my own weight calculator.

one thing i am having a problem is with trying to make it so if a weight is over a certain number, then the shipping price will increase by X.

shipping prices are charged in 20000 gram blocks, so if I have something that is 22000 grams then that will be two blocks. what i need to do is something like (this is a big guess)

 

$row3 = 50;

$weighttotal = 22000;

if ($weighttotal > 20000) {

foreach (20000) {

$row3 += $row3;}

}

}

}

 

can it be done on php??

Link to comment
https://forums.phpfreaks.com/topic/249030-if-something-x-foreach-x-something-z/
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.