Hi
i Think the problem is that knew session ids are getting generated each time you submit the form.Just try my code.
Register this in the home page
<?
session_register("name");
$name=saravanan;?>
in the above code name is my session name
and saravanan is the value assigned to it
Then tp retrive the value of this session use
session_start();
session_name($name);
$myname=session_name();
Note:This code shuld be before ur Html codes
Good Luck
Saravanan