Advertisement
Guest User

Untitled

a guest
May 25th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. <?php
  2.  
  3. error_reporting(0);
  4.  
  5. class lucas{
  6.    var $user = "root";
  7.    var $pass = "";
  8.    var $server = "localhost";
  9.    
  10.    function connect() {
  11.       mysql_connect($this->server, $this->user, $this->pass) or die ("Erro ao conectar-se com o Mysql");
  12.      
  13.    }
  14. }
  15.  
  16. $mysql = new lucas();
  17. $mysql -> connect();
  18. die("Conexao ativa");
  19. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement