You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<?php
|
|
|
|
|
|
|
|
class Alumni{
|
|
|
|
|
|
|
|
private string $id;
|
|
|
|
private string $alumni;
|
|
|
|
private string $email;
|
|
|
|
private string $cv;
|
|
|
|
private string $nom;
|
|
|
|
private string $prenom;
|
|
|
|
private string $linkedin;
|
|
|
|
private string $github;
|
|
|
|
private string $portfolio;
|
|
|
|
|
|
|
|
public function __construct($id,$alumni,$email,$cv,$prenom,$linkedin,$github,$portfolio){
|
|
|
|
$this->id=$id;
|
|
|
|
$this->alumni=$alumni;
|
|
|
|
$this->email=$email;
|
|
|
|
$this->cv=$cv;
|
|
|
|
$this->nom=$nom;
|
|
|
|
$this->prenom=$prenom;
|
|
|
|
$this->linkedin=$linkedin;
|
|
|
|
$this->github=$github;
|
|
|
|
$this->portfolio=$portfolio;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|