Files
DEV/DEV.2.2/TP/TP2/ex1controller.php
EmmanuelTiamzon 7019a3b7ea update
2025-09-30 09:43:41 +02:00

25 lines
367 B
PHP

//controller.php
<?php
$prenom = $_POST['prenom'];
$nom = $_POST['nom'];
$os = $_POST['os'];
$button = $_POST['button'];
if(ctype_upper($prenom)) {
$prenom = strtolower($prenom);
}
ucfirst($prenom);
if(ctype_upper($nom)){
$nom = strtolower($nom);
}
ucfirst($nom);
if($button){
echo"<ul>";
echo"<li>$prenom $nom</li>";
echo"<li>$os</li>";
echo"</ul>";
}
?>