Advertisement
apl-mhd

database connect

Sep 14th, 2018
331
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1.  
  2. <?php
  3. /**
  4.  * Created by PhpStorm.
  5.  * User: apelmahmud
  6.  * Date: 02/04/2017
  7.  * Time: 3:24 PM
  8.  */
  9.  
  10.  
  11.  
  12.     $serverName = 'localhost';
  13.     $userName = 'root';
  14.     $pass = '';
  15.     $dbname = 'Discount';
  16.  
  17.     $con = new  mysqli($serverName,$userName,$pass,$dbname);
  18.  
  19.     if($con->connect_error){
  20.  
  21.         die("connect fail");
  22.     }
  23.  
  24.  
  25.  
  26. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement