Files
premier/script1.php

14 lines
198 B
PHP
Raw Normal View History

2025-09-29 11:34:09 +02:00
<?php
include "Script2.php";
require_once "Etudiant.php";
echo "Script 1 et 2";
traitementPrive();
$etu1 = new Etudiant();
2025-09-29 11:37:23 +02:00
$etu1->setNom("Durand");
echo "Nom de l'étudiant :".$etu1->getNom();