home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 March / PCWorld_2003-03_cd.bin / Software / Vyzkuste / phptriad / phptriad2-2-1.exe / util / mysql.php < prev    next >
PHP Script  |  2002-02-15  |  1KB  |  31 lines

  1. <?php
  2.  
  3. function mysqld($action) {
  4.  
  5.     if ($action == "start") {
  6.         print("Starting MySQL<br>");
  7.         system("c:\apache\mysql\bin\mysqld --standalone") or die ("<br><a href=\"index.html\">Back to Index</a>");
  8.         print("MySQL Started<br><a href=\"index.html\">Back to Index</a>");
  9.     }
  10.     elseif ($action == "stop") {
  11.         print("Stopping MySQL Service<br>");
  12.         system("c:\apache\mysql\bin\mysqladmin shutdown") or die ("<br><a href=\"index.html\">Back to Index</a>");
  13.         print("MySQL Stopped<br><a href=\"index.html\">Back to Index</a>");
  14.     }elseif ($action == "start-nt") {
  15.         print("Starting MySQL Service<br>");
  16.         system("c:\apache\mysql\bin\mysqld-nt --standalone") or die ("<br><a href=\"index.html\">Back to Index</a>");
  17.         print("MySQL Stopped<br><a href=\"index.html\">Back to Index</a>");
  18.     }elseif ($action == "stop-nt") {
  19.         print("Stopping MySQL Service<br>");
  20.         system("c:\apache\mysql\bin\mysqladmin shutdown") or die ("<br><a href=\"index.html\">Back to Index</a>");
  21.         print("MySQL Stopped<br><a href=\"index.html\">Back to Index</a>");
  22.     
  23.     
  24.     } else {
  25.     print("No action to perform");
  26.     }
  27.  
  28. }
  29.  
  30. mysqld($action);
  31. ?>