12 lines
227 B
PHP
12 lines
227 B
PHP
<?php
|
|
require_once 'Etudiant.class.php';
|
|
|
|
echo "script 1";
|
|
|
|
$etudiant = new Etudiant("Week", "John", 40);
|
|
|
|
echo $etudiant->afficherInfo();
|
|
|
|
$etudiant->setNom("CENA");
|
|
|
|
echo $etudiant->afficherInfo(); |