Files
depot_1/script1.php

12 lines
227 B
PHP
Raw Permalink Normal View History

2025-09-29 11:07:31 +02:00
<?php
2025-09-29 11:36:10 +02:00
require_once 'Etudiant.class.php';
echo "script 1";
$etudiant = new Etudiant("Week", "John", 40);
echo $etudiant->afficherInfo();
$etudiant->setNom("CENA");
echo $etudiant->afficherInfo();