Hi
I think the problem is that in your script, you are sending any output before starting session.
Make session_start() be the first statement of your script... do not leave anything, not even blank line..
e.g
<? // The del. starts from the very first
// line of code. Do not send anything
// before this line.
// now start the session
session_start();
// bla bla....... your code...
?>
Hope this helps :) If not, do lemme inform, I have done a loot of work on sessions.
Regards
fahad
www.fahadkhalil.f2s.com