Welcome, today we will be learning sessions.
What are sessions?
Sessions are basicly cookies with a fallback, they end when you close you're browser.
You can use sessions to store data.
To use sessions you have to first use this code at the top of you're page:
Code:
to set a session you use this code:
Code:
What are sessions?
Sessions are basicly cookies with a fallback, they end when you close you're browser.
You can use sessions to store data.
To use sessions you have to first use this code at the top of you're page:
Code:
<?
session_start();
?>
session_start();
?>
to set a session you use this code:
Code:
<?
session_start();
$_SESSION['session_name'] = 'session data';
?>
session_start();
$_SESSION['session_name'] = 'session data';
?>
discuss this topic to forum
