diff options
author | lonkaars <loek@pipeframe.xyz> | 2023-06-01 18:20:05 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2023-06-01 18:20:05 +0200 |
commit | 2197faf27421f3df01d7ae6618ddf12873dca3bb (patch) | |
tree | aa92526fec25bc563b3174161dd6b5b5ca3b9bad /public/index.php | |
parent | c2b5ab68a84bf830f64e9c4e39f92b24c085c7e6 (diff) |
admin-promo done
Diffstat (limited to 'public/index.php')
-rw-r--r-- | public/index.php | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/public/index.php b/public/index.php index fecf624..3540692 100644 --- a/public/index.php +++ b/public/index.php @@ -1,16 +1,6 @@ <!DOCTYPE html> <?php require "../lib/db.php"; ?> -<?php -function promobuff2str($price_buff, $count_buff) { - if ($count_buff == 1) return ((1-$price_buff)*100)."% korting"; - if ($count_buff <= 4) { - for ($i = $count_buff-1; $i > 0; $i--) - if (abs((($i/$count_buff)-$price_buff)/$price_buff) < 0.001) - return $i."+".($count_buff - $i)." gratis"; - } - return ((1-$price_buff)*100)."% korting per ".$count_buff."-pack"; -} -?> +<?php require "../lib/promo.php"; ?> <html> <head> <?php include 'head.php' ?> |