Files
premier/script1.php

14 lines
205 B
PHP
Raw Permalink Normal View History

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