I have a require statement that hangs in one script and works fine in another. In fact, it hangs in a script where it is only one line, the require line...
<?
require("MySqlSession.php");
?>
but this works
<?
require("MySqlSession.php");
...more code...
?>
Any idea what is wrong?
Donald