{"id":411,"date":"2021-06-10T14:49:34","date_gmt":"2021-06-10T13:49:34","guid":{"rendered":"https:\/\/blogs.glowscotland.org.uk\/sh\/ahscomputinghtml\/?page_id=411"},"modified":"2021-06-10T15:51:41","modified_gmt":"2021-06-10T14:51:41","slug":"session-variables","status":"publish","type":"page","link":"https:\/\/blogs.glowscotland.org.uk\/sh\/ahscomputinghtml\/php\/session-variables\/","title":{"rendered":"Session Variables"},"content":{"rendered":"<p><img loading=\"lazy\" decoding=\"async\" class=\"alignright wp-image-196\" src=\"https:\/\/blogs.glowscotland.org.uk\/sh\/public\/ahscomputinghtml\/uploads\/sites\/3275\/2021\/06\/05211152\/sqa-ah.png\" alt=\"\" width=\"100\" height=\"97\" \/><a href=\"https:\/\/www.w3schools.com\/pHp\/php_sessions.asp\" target=\"_blank\" rel=\"noopener noreferrer\"><img loading=\"lazy\" decoding=\"async\" class=\"image-59 alignright\" src=\"https:\/\/glow-prod-sh.s3.eu-west-1.amazonaws.com\/sh\/public\/ahscomputinghtml\/uploads\/sites\/3275\/2021\/06\/03210120\/w3schools-150x150.png?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&#038;X-Amz-Security-Token=IQoJb3JpZ2luX2VjEE4aCWV1LXdlc3QtMSJHMEUCIQCy5U9KCQDkAOmSk7qY37d3TpDt6li8ykZzbn26TPTNSgIgDkzWMZ%2FHNX0mZgmwVdpzpVlwJdD99DO%2BylgwFO7NnlUquQUIFxAFGgwyNzM1NzAxOTU0MzMiDBQlR562JauUYVir8iqWBcvtq3riHVv6VN7CwUDJN%2BU%2Bi%2BNPbkOILqlwaeyq8fvgJwkAYCT1zc8UF5BSHIJQKMSjxa0ye2IWM4xlc3eyw%2Bduvkn6cRaruuQZl8EcAIU4TJoBHhTl%2Bvj2NhGXfNrk4icVCma%2BQgNxUn9cBEekSODjSCcGNW5g9Z9Ef%2F75n9K3srlBSEJ%2FWP7taAsFh7YyFlvzzS0VuE0W%2FzBeCwAKdnRJ7ZY2Njx6IaGVsLZMeBs87goUDMl%2BufTMd%2Fu2ByXc9ng54uZPck1dq125PpcXkhf%2BCLI%2F12Lo2av%2BQ%2B34wowftPQqI5kVQwvXpo3tknZeE1YqXeua6BR5j7FFtIWZZPunfsJHoRn13y2DFbLsOD1wM64T69VhEshS3n1FOLmEJiNs2XRuaunP5q%2BoitboT1V6iHplUsIgRm7i6bS%2FZMuiCC1ITpeQCMh7Hwb4FZuB%2FAqpKmgpmrOnw00SvRdF9SYqL%2B0FydtF%2BAEGakI9ffUwCNM%2F0hXBU2JTCP9VBOhTGy4nGz6%2BhIfp2KHoVzh4h8bJWDfhiW1lteHbnJh%2FvN%2BlVzDj5l9cdtGVWcKXrILUeHbPp1%2Fis8BENsimxMbWRX9VVQ1aKyT1W3FiooqYNMx3l0YP2oogSyey4NbawAFayAxPElUokLnVcDnwI29dIfGQ4MSeUwUvDflWNQUC4yczcsUVPtAyrBk%2B%2B3YvZb2LunFOdloOMMOagMM225fkR5F6gSS6bn8VvhWVtSg2bIwO2fxCQ0T1gTaXTKbAl%2BzHuUi9O1yo2b6M6NyAKecE4aUS2iJ3lYMC0i1wFlpAEdykUrH2AzfZhqa6qtmcWBcChsnToqAKyjwp1xqK9fyu7A8vztH4Ql30IHj%2FtVgm3SpXIqu8j0d7MLv%2Fls8GOrEBRDhnNJXU5%2B0WkBlRquweKtVrE0xG0YRZ8qhKDafjJdee2j%2FfKJD6cn1tkxpdIlrgi%2FQ75PghA3JY%2B6SB4n6WnLjBo37ouz8eW0fy3wna%2BTSdKFV2Dm%2Fphd8%2BpzWMEEMwCe4q%2FtzehlGGRTrpcJi93NvMg4p2DhYjT7eA631HEqxPLrC5mo2UtvGRNo2LfrXQbLk8YUNqW0AdMA5Zb2MJ94bAzzpBpewcP0jkmcotH0XO&#038;X-Amz-Algorithm=AWS4-HMAC-SHA256&#038;X-Amz-Credential=ASIAT7MQN47UTEEPTRSC%2F20260420%2Feu-west-1%2Fs3%2Faws4_request&#038;X-Amz-Date=20260420T064417Z&#038;X-Amz-SignedHeaders=host&#038;X-Amz-Expires=900&#038;X-Amz-Signature=26673257975750873d9ee1d4e1d4dc6409627d67fe9ed09ca4f82e485fced7b7\" alt=\"\" width=\"50\" height=\"47\" \/><\/a>When a browser loads a new web page, it forgets all the information from the previous page. A PHP session is a way of storing information within a website, so that it can be retained and used across multiple pages.<br \/>\nExamples of session use are:<\/p>\n<ul>\n<li>displaying a user\u2019s id on multiple pages, following a successful login<\/li>\n<li>retaining selected items in a shopping cart, as the user navigates from page to page<\/li>\n<li>retaining values, such as a user\u2019s quiz Score, when each new question page loads<\/li>\n<\/ul>\n<h1>Starting a session<\/h1>\n<p>The following PHP function is used to start a session. This should be placed at the top of a page, before any HTML code. If data is being passed between multiple pages, each page that requires access to the session should contain the PHP code below.<\/p>\n<p>When a new session starts, a user key is stored on the user\u2019s computer. The session_start() function looks to see if a user key exists. If it does, the current session is continued. If no user key exists, a new session is started.<\/p>\n<pre class=\"brush: php; highlight: [1,2,3]; title: PHP; notranslate\" title=\"PHP\">&lt;?php\r\n   session_start();\r\n?&gt;\r\n&lt;!DOCTYPE html&gt;\r\n&lt;html&gt;\r\n&lt;head&gt;\r\n<\/pre>\n<p>&nbsp;<\/p>\n<h1>Session Variables<\/h1>\n<p>Session variables can be assigned values, or have their values checked in any file that contains the session_start() function.<\/p>\n<pre class=\"brush: php; highlight: [2,5]; title: PHP; notranslate\" title=\"PHP\">\r\nif (!isset() {$_SESSION&#x5B;'loggedin']) {\r\n    $_SESSION&#x5B;'loggedin'] = False;\r\n}\r\n...\r\n$_SESSION&#x5B;'username'] = $username;\r\n<\/pre>\n<pre class=\"brush: php; title: PHP; notranslate\" title=\"PHP\">\r\nif ($_SESSION&#x5B;'loggedin'] == True) {\r\n    echo &quot;&lt;p&gt;Logged in as: &quot; . $_SESSION&#x5B;'username'] . &quot;&lt;\/p&gt;&quot;;\r\n    \/\/ display rest of page\r\n} else {\r\n    echo &quot;&lt;p&gt;Not logged in&lt;\/p&gt;&quot;;\r\n    \/\/ display page with a login button\r\n}\r\n<\/pre>\n<h1>Ending a session<\/h1>\n<p>The PHP function session_destroy() is used to end a session. In this example, logout.php is ran when a &#8220;Log Out&#8221; button on other pages is clicked. The code below destroys the session and then reloads the home page.<\/p>\n<pre class=\"brush: php; title: logout.php; notranslate\" title=\"logout.php\">\r\n&lt;?php\r\n    session_start();\r\n?&gt;\r\n \r\n&lt;?php\r\n    session_destroy();\r\n    include &quot;index.php&quot;;\r\n    die;\r\n\/php&gt;\r\n<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>When a browser loads a new web page, it forgets all the information from the previous page. A PHP session is a way of storing information within a website, so that it can be retained and used across multiple pages. Examples of session use are: displaying a user\u2019s id on multiple pages, following a successful login retaining selected items in a shopping cart, as the user navigates from page to<\/p>\n<p><a class=\"more-link\" href=\"https:\/\/blogs.glowscotland.org.uk\/sh\/ahscomputinghtml\/php\/session-variables\/\">Read More<\/a><\/p>\n","protected":false},"author":7,"featured_media":0,"parent":343,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-411","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/blogs.glowscotland.org.uk\/sh\/ahscomputinghtml\/wp-json\/wp\/v2\/pages\/411","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blogs.glowscotland.org.uk\/sh\/ahscomputinghtml\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/blogs.glowscotland.org.uk\/sh\/ahscomputinghtml\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/blogs.glowscotland.org.uk\/sh\/ahscomputinghtml\/wp-json\/wp\/v2\/users\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/blogs.glowscotland.org.uk\/sh\/ahscomputinghtml\/wp-json\/wp\/v2\/comments?post=411"}],"version-history":[{"count":11,"href":"https:\/\/blogs.glowscotland.org.uk\/sh\/ahscomputinghtml\/wp-json\/wp\/v2\/pages\/411\/revisions"}],"predecessor-version":[{"id":425,"href":"https:\/\/blogs.glowscotland.org.uk\/sh\/ahscomputinghtml\/wp-json\/wp\/v2\/pages\/411\/revisions\/425"}],"up":[{"embeddable":true,"href":"https:\/\/blogs.glowscotland.org.uk\/sh\/ahscomputinghtml\/wp-json\/wp\/v2\/pages\/343"}],"wp:attachment":[{"href":"https:\/\/blogs.glowscotland.org.uk\/sh\/ahscomputinghtml\/wp-json\/wp\/v2\/media?parent=411"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}