File: /home/emblazeone/public_html/amaroseantiaging/back/config.php
<?php
function getPrice($opt, $pid){
if ($opt == 1) {
if ($pid == 1) {
return '29.95';
} elseif ($pid == 3) {
return '83.85';
} else {
return '124.75';
}
} else {
if ($pid == 1) {
return '23.95';
} elseif ($pid == 3) {
return '68.85';
} else {
return '99.75';
}
}
}
function getKonnectiveProductId($opt, $pid){
if ($opt == 1) {
if ($pid == 1) {
return 1;
} elseif ($pid == 3) {
return 2;
} else {
return 3;
}
} else {
if ($pid == 1) {
return 4;
} elseif ($pid == 3) {
return 5;
} else {
return 6;
}
}
}