Advertisement
Guest User

Untitled

a guest
Jan 9th, 2016
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.60 KB | None | 0 0
  1. <?php
  2. /**
  3.  * ------------------
  4.  * @author Pkkpirate
  5.  * @copyright 2016
  6.  * ------------------
  7.  *
  8.  * File name:     UnityTestLink
  9.  * FileDesk:      A php plugin that will handel conection to a mysql server
  10.  * FileVersion:   BetaTesting
  11.  *
  12.   */
  13.  
  14.     $servername = "mysql9.000webhost.com";
  15.     $username = "a6152882_Trpg";
  16.     $password = "Something1Dunno";
  17.     $dbname = "User_Data";
  18.    
  19.     $connection = new mysqli($servername, $username, $password, $dbname);
  20.    
  21.     if(!$connection){
  22.         die ("Connection Error! ".mysql_connecr_error());
  23.     }
  24.     else echo("Sucsessful!");
  25. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement