PHP is acting strange when I try to require a file. I've used require to include the file in another php script and it works great. When I wrote a script with nothing but the require statement, it hangs...
This hangs
<?
require("MySqlSession.inc"
?>
but this works
<?
require("MySqlSession.inc"
more code...
?>
in fact, every php script with this require beside the one I wrote first hangs. Any idea what is causing this?
Donald
This hangs
<?
require("MySqlSession.inc"
?>
but this works
<?
require("MySqlSession.inc"
more code...
?>
in fact, every php script with this require beside the one I wrote first hangs. Any idea what is causing this?
Donald