Quote Originally Posted by blastingpcbrains
Pleeeeeeeease
I can see why you have 298 posts

Here's one example:

index.php
PHP Code:
<?php

session_start
(); //Starts the session
$_SESSION['hello'] = 'Hello! This is "saved" session data. :)';
//Writes the value of "hello" to the session file.

?>
somepage.php
PHP Code:
<?php
session_start
(); //Starts the session
echo $_SESSION['hello']; //Writes the data of 'hello'
?>