Exemplo n.º 1
0
 public function hand_website()
 {
     if (isset($_GET['cmd'])) {
         switch ($_GET['cmd']) {
             case 1:
                 Website_Controler::hand_login();
                 break;
             case 2:
                 Website_Controler::hand_registration();
                 break;
             case 3:
                 Website_Controler::hand_logout();
                 break;
             case "search":
                 Website_Controler::hand_research();
                 break;
             default:
                 # code...
                 break;
         }
     }
 }