Advertisement
Guest User

Untitled

a guest
Nov 7th, 2016
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. <?php
  2.  
  3. Class Bank
  4. {
  5.  
  6.     private $host = "localhost";
  7.     private $hostuser = "root";
  8.     private $hostpass = "";
  9.  
  10.     function __construct()
  11.     {
  12.         $this->conn = new PDO("mysql:host=$this->host;dbname=bank;charset=UTF-8", $this->hostuser, $this->hostpass);
  13.     }
  14.  
  15.     function login($login, $password)
  16.     {
  17.        
  18.     }
  19.  
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement