The syntax of the session_start () function : Session Start « Cookie Session « PHP






The syntax of the session_start () function

<?php
    session_start ();
    $music = "A";
    session_register ('music');

    echo $music;
?>
           
       








Related examples in the same category