Guest User

Untitled

a guest
May 7th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. <?php require_once('config.php'); ?>
  2.  
  3. <?php
  4.  
  5. class data{
  6.  
  7.     private $con;
  8.     private $host;
  9.     private $user;
  10.     private $pass;
  11.  
  12.     function __construct($host,$user,$pass){
  13.  
  14.         $this->host = $host;   
  15.         $this->user = $user;
  16.         $this->pass = $pass;
  17.  
  18.     }
  19.  
  20. }
  21.  
  22. ?>
Add Comment
Please, Sign In to add comment