Add exams from exam58 to exam98

This commit is contained in:
2024-05-08 13:49:37 +02:00
parent 1bfdab1994
commit 4fd956ddac
39 changed files with 481 additions and 0 deletions

14
exam73/Sessions.php Normal file
View File

@@ -0,0 +1,14 @@
<?php
session_start();
if( isset($_SESSION['username']) && isset($_SESSION['age'])){
echo ' Welcome , ' , $_SESSION['username'] . '. You are ' . $_SESSION['age'] . 'years old.';
} else{
echo 'Please log in.';
}
?>