Created
November 8, 2022 16:44
-
-
Save saaeiddev/4ad4c528b0b0a44902c43003b4a6a37f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
session_start(); | |
$_SESSION["b"] = 12; | |
$_SESSION["c"] = array(3 , 10 , 11 , 12 , 18); | |
print_r($_SESSION); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment