Files
depot_1/script1.php
2025-09-29 11:36:10 +02:00

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();