Advertisement
Guest User

aaas

a guest
May 30th, 2018
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.51 KB | None | 0 0
  1. function cMySQL() {
  2.     mysql_log(LOG_ERROR, LOG_TYPE_TEXT);
  3.     switch( cType ) {
  4.         case 1: {
  5.             SQL = mysql_connect(MySQL_Host, MySQL_User, MySQL_Database, MySQL_Password);
  6.             print("[ MySQL Connection ]: Conexiunea user-ului cu baza de date a fost efectuata cu succes! (Localhost)");
  7.         }
  8.         case 2: {
  9.             SQL = mysql_connect(MySQL_GameHost, MySQL_GameUser, MySQL_GameDatabase, MySQL_GamePassword);
  10.             print("[ MySQL Connection ]: Conexiunea user-ului cu baza de date a fost efectuata cu succes! (Host)");
  11.         }
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement