TestRay
Html
code posted
by
Nobody
created at 16 Feb 17:07, updated at 12 Mar 16:27
Edit
|
Back
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
<?php session_start(); ?> <html> <head> <title>testsession.php</title> </head> <body> <p>vous ĂȘtes : <?php if (isset($_GET['name'])) { $_SESSION['name'] = $_GET['name']; echo ($_SESSION['name'] . " (get)"); } else if (isset($_SESSION['name'])) { echo ($_SESSION['name'] . " (session)"); } else { echo ('inconnu'); } ?> </p> </body> </html> |
382 Bytes in 2 ms with coderay