Bonjour, bon ça n'a rien à voir avec la basse mais bon , je dois rendre un programme PHP très bientôt et je vois pas comment corriger le problème que j'ai :
Voilà le code >>
<?php
class Station {
var $connexion;
function Station($connex){
$this->connexion = $connex;
}
function set($connex){
$this->connexion = $connex;
}
function get(){
return $this->connexion;
}
function getInfoStation($name){
$query = "SELECT * FROM Station where NOMSTAT=$name";
$res = $this->connexion->query($query);
while($ligne = $res->fetchRow(DB_FETCHMODE_OBJECT)){
if( DB::isError($res) ){
die($res->getMessage());
}
$tabstation[] = array($ligne->NOMSTAT,$ligne->ALTSTAT,$ligne->PAYSTAT,$ligne->CAPSTAT);
}
return $tabstation;
}
function listerStation(){
$query = "SELECT * FROM Station";
$res = $this->connexion->query($query);
while($ligne = $res->fetchRow(DB_FETCHMODE_OBJECT)){
if( DB::isError($res) ){
die($res->getMessage());
}
$tabstation[] = array($ligne->NOMSTAT,$ligne->ALTSTAT,$ligne->PAYSTAT,$ligne->CAPSTAT);
}
return $tabstation;
}
}
?>