class control1{ public function init1($page){ switch($page){ case "index": header('location:http://b2llab.in/fieldcloud//Web/View/Home.php'); break; case "login": header('location:http://b2llab.in/fieldcloud//Web/View/Login.php'); break; case "dashboard": header('location:http://b2llab.in/fieldcloud//Web/View/dashboard.php'); break; default: header('location:http://b2llab.in/fieldcloud//Web/View/error.php'); //end switch } //end function tag } //end class tag }