I can see why you have 298 posts :rolleyes:Quote:
Originally Posted by blastingpcbrains
Here's one example:
index.php
somepage.phpPHP Code:<?php
session_start(); //Starts the session
$_SESSION['hello'] = 'Hello! This is "saved" session data. :)';
//Writes the value of "hello" to the session file.
?>
:)PHP Code:<?php
session_start(); //Starts the session
echo $_SESSION['hello']; //Writes the data of 'hello'
?>
