Essentially, the code is any session command. For example, I might have an html page:
<head>
<title>etc.....
</title>
bla,bla,bla
The page loads fine (without the session code). But when I add the session code:
<?
session_start();
session_register("somevar");
?>
<head>
<title>etc.....
</title>
bla,bla,bla
Now with the session code inserted I get the "Page unavailable" error. Like I said though, it works (or seems to work) perfectly on my PC. Is it possible that some how my win2k server needs some other info set up in the php.ini?
Thanks for bearing with me so far, I appreciate your time!