I have viewladder.php and i need to pass 2 variables from it, like:
viewladder.php?id=1&page=1
how would i do this?
i already have one variable passed off using:
switch($_GET['id'])
{
case "1":
include("mohaa/obj7v7.php");
exit;
break;
default:
break;
}