Bob A. Example path
session.save_path = c:\http\cgi\session
Basically a directory under the root of your webserver
B. session_start() must be before any other commands in your script such as HTML.
So Line 1: <?php
Line 2: session_start()
Mike

