Hi there,
is there an easy way to have the same case to do the same:
e.g.
If (isset($ref))
{
switch($ref) {
Case "1":
Case "2":
Case "3":
include("x.php");
break;
etc...
to ->
If (isset($ref))
{
switch($ref) {
Case "1-3":
include("x.php");
break;
... or something like that?