25 lines
367 B
PHP
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>";
|
|
}
|
|
?>
|