Hey guys, there is something weird going on with either my browsers or my web server or my php install, don't know which...
I have two nearly completed projects which I have been editing locally and tested on a Apache 2.2 server with php 5 and mysql 5.0 installed. Everything has worked fine, but sometimes when I open one of my php files in firefox (or ie) the page is blank, and more blank tabs just keep opening until I manage to hit the cancel button or close them all. This would earlier resolve itself after a computer restart, but now that doesnt work either.
There is absolutely no path in the address bar of the tabs that open, and the source is, invariably (no matter what .php file I try to open) as follows:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><title></title></head>
<body></body></html>
I even tried a simple test php script like this:
<html>
<body>
<?PHP
print 'My first PHP script!';
?>
</body>
</html>
but the source code is the same.
I have cleared the cache in firefox by "clearing private data" but nothing changes. Any thoughts?