The syntax of the session_start () function : Session Start « Cookie Session « PHP
- PHP
- Cookie Session
- Session Start
The syntax of the session_start () function
<?php
session_start ();
$music = "A";
session_register ('music');
echo $music;
?>
Related examples in the same category