1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
| <?php
class test777{
private $user;
private $pas;
private $host;
private $database;
public function __construct(){
}
public function con(){
try{
$this->user= 'david';
$this->pas = 'david0877';
$this->host = 'localhost';
$this->database = 'landman';
$this->bd = new PDO('mysql:host= $this->host;dbname= $this->database', '$this->user', '$this->pas');
}
catch(PDOException $e){
echo 'erreur';
if(!is_object($this->db)){echo"<font color='red' size='5'>mon objet est vide</font>";}
}
return $this->bd;
}
}
$myobj = new test777();
$myobj->con();
?> |