First your syntax is incorrect:
Change the:
session_register($category);
to:
session_register("category");
But also looking at posts to this further down, I see that you are using php3 which I don't think sessions are supported. This is a new feature added in php4.
How 'bout an upgrade? :-)