Source: lesson_14_c3_session_vars.php | Résultat |
<?php error_reporting(E_ERROR | E_WARNING | E_PARSE); empty($_SESSION)? session_start():print""; $_SESSION["client"][0] = "Dupond"; $_SESSION["client"][1] = "Paul"; $_SESSION["client"][2] = "33"; $_SESSION["client"][3] = "91700"; ?> Le tableau a été ecrit <br/> <a href=show_exercises.php?exercise=lesson_14_c4_session_vars.php> Lire le tableau des variables de session</a>
| Le tableau a été ecrit
Lire le tableau des variables de session
|