Ejemplo n.º 1
0
echo $prof . "</br>";
echo "Cour(s) : </br>";
$cour = new Cours(1, 1, 1, 1);
echo $cour->getNo_cours() . "</br>";
echo $cour->getNo_prof() . "</br>";
echo $cour->getNo_type() . "</br>";
echo $cour->getNo_matiere() . "</br>";
echo $cour . "</br>";
echo "Type(s) : </br>";
$type = new Type(1, "CM");
echo $type->getNo_type() . "</br>";
echo $type->getNom() . "</br>";
echo $type . "</br>";
echo "Matiere(s) : </br>";
$matiere = new Matiere(1, "Base de données", "BdD", 1, 1);
echo $matiere->getNo_matiere() . "</br>";
echo $matiere->getNom() . "</br>";
echo $matiere->getInitiales() . "</br>";
echo $matiere->getNo_module() . "</br>";
echo $matiere->getNo_section() . "</br>";
echo $matiere . "</br>";
echo "Seance(s) : </br>";
$seance = new Seance(1, "21/10/2015", 1, 1, 1, 1, 1);
echo $seance->getNo_seance() . "</br>";
echo $seance->getDate_debut() . "</br>";
echo $seance->getNo_cours() . "</br>";
echo $seance->getNo_ordre() . "</br>";
echo $seance->getNo_section() . "</br>";
echo $seance->getNo_groupe() . "</br>";
echo $seance->getNo_sous_groupe() . "</br>";
echo $seance . "</br>";