With the code I have I override the value of currency when I try to set a default value.
Code: Select all
<?php
switch($_GET['c']) {
case "c":
$currency = "?c=c";
break;
default:
$currency = "";
break;
}
?>Moderator: General Moderators
Code: Select all
<?php
switch($_GET['c']) {
case "c":
$currency = "?c=c";
break;
default:
$currency = "";
break;
}
?>