https://dev.webpages.dk/ |
|
PHP How to Use SESSION
PHP How to Use SESSION Session variables can be seen as a kind of 'global' variables. This means that you can bring some variable values from one page to the next. You just have to be aware that you have to piut this short string in the absolute top of each page where you use the session variable, else it simply not work. <?php session_start(); ?> |
|
Icons made by Freepik from www.flaticon.com | Here you see how you use the SESSION variable. Carry a variabel value from one page to another. |
|