Testimonials
Лазерный Маркер
Sed feugiat porttitor nunc, non dignissim ipsum vestibulum in. Donec in blandit dolor. Vivamus a fringilla lorem, vel faucibus ante.
Nunc ullamcorper, justo a iaculis elementum, enim orci viverra eros, fringilla porttitor lorem eros vel odio.
Калькулятор стоимости гравировки
= 1 && $quantity <= 5){$pricePerArea = 100;}elseif ($quantity >= 6 && $quantity <= 10){$pricePerArea = 40;}elseif ($quantity >= 11 && $quantity <= 50){$pricePerArea = 30;}elseif ($quantity >= 51 && $quantity <= 100){$pricePerArea = 20;}elseif ($quantity >= 101 && $quantity <= 500){$pricePerArea = 10;}elseif ($quantity >= 501){$pricePerArea = 15;}else{return "Некорректный тираж.";}// Рассчитываем стоимость за единицу и за весь тираж $costPerUnit = $area * $pricePerArea; $totalCost = $costPerUnit * $quantity; return['costPerUnit' => $costPerUnit, 'totalCost' => $totalCost];}$result = calculateEngravingCost($width, $height, $quantity); echo "Результаты расчета:
"; echo "Цена за единицу: " . $result['costPerUnit']. " руб."; echo "Сумма за весь тираж: " . $result['totalCost']. " руб.
";}?> ```