예제 #1
0
파일: admin.php 프로젝트: sooheib/WEB
 function __construct($nom, $prenom, $age, $login, $pwd)
 {
     parent::__construct($nom, $prenom, $age);
     $this->login = $login;
     $this->pwd = $pwd;
 }
예제 #2
0
파일: etudiant.php 프로젝트: sooheib/WEB
 function __construct($nom, $prenom, $age, $classe)
 {
     parent::__construct($nom, $prenom, $age);
     $this->classe = $classe;
 }