ok so I have the $_POST var being passed to the $_SESSION var on my index page. Then when you click it link it does this
session_register('username');
$_SESSION['username'] = $username;
session_register('password');
$_SESSION['password'] = $password;
Now that seems to pass the two vars just fine, if the other page it is linked to is in the same dir. When I put the page in a different dir I get an error when I click another link on that page(it should be passing the $_SESSION) every time I cick a link. Here is the error:
CGI Error
The specified CGI application misbehaved by not returning a complete set of HTTP headers. The headers it did return are
doesn't say)
I am new to the Session thing so I have no clue why it is doing this.
session_register('username');
$_SESSION['username'] = $username;
session_register('password');
$_SESSION['password'] = $password;
Now that seems to pass the two vars just fine, if the other page it is linked to is in the same dir. When I put the page in a different dir I get an error when I click another link on that page(it should be passing the $_SESSION) every time I cick a link. Here is the error:
CGI Error
The specified CGI application misbehaved by not returning a complete set of HTTP headers. The headers it did return are
I am new to the Session thing so I have no clue why it is doing this.