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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
| <?php
class beuzelin{
// ----o Constructor
function __construct(){
//defintion des variables de connexions
$this->user='root';
$this->pass='';
$this->dsn='mysql:host=localhost;dbname=test_beuzelin';
}//fin construct
//--------------O Methodes
/**
récupère l'ensemble des données
*/
function ecran1(){
try {
$dbh= new PDO($this->dsn,$this->user,$this->pass);
}catch(PDOException $e){die ("erreur ! : ".$e->getMessage());}
//lecture enregistrement
$sql="SELECT * FROM groupe";
return $dbh->query($sql);
//$dbh= NULL;
}
function lst_mvt(){
try {
$dbh= new PDO($this->dsn,$this->user,$this->pass);
}catch(PDOException $e){die ("erreur ! : ".$e->getMessage());}
//lecture enregistrement
$sql="SELECT * FROM lst_mvt";
return $dbh->query($sql);
//$dbh= NULL;
}
function qualite(){
try {
$dbh= new PDO($this->dsn,$this->user,$this->pass);
}catch(PDOException $e){die ("erreur ! : ".$e->getMessage());}
//lecture enregistrement
$sql="SELECT * FROM qualite";
return $dbh->query($sql);
//$dbh= NULL;
}
}//fin class
?> |