Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2015
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. if(isset($_GET["id"])) {
  2.                     if(isset($_GET["action"])) {
  3.                         if($_GET["action"] == "start") {
  4.                             StartServer($_GET["id"]);
  5.                         } else if($_GET["action"] == "stop") {
  6.                             stopServer($_GET["id"]);
  7.                         } else if($_GET["action"] == "install") {
  8.                             setupScript($_GET["id"]);
  9.                         }
  10.                     }
  11.                 }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement