<?php
# initialize a session
session_start();
# print session ID
echo "I'm tracking you with session ID : " . session_id();
?>
