Object update

This commit is contained in:
Xeno-linux
2025-09-29 11:36:10 +02:00
parent 8938e22e1e
commit c716cd947d
2 changed files with 55 additions and 1 deletions

View File

@@ -1,2 +1,12 @@
<?php
echo "script 1";
require_once 'Etudiant.class.php';
echo "script 1";
$etudiant = new Etudiant("Week", "John", 40);
echo $etudiant->afficherInfo();
$etudiant->setNom("CENA");
echo $etudiant->afficherInfo();