Hi,
I have this wierld problem. I have an index.php page and in it, there are 10 include statements. Each include statement represents a section in the index page. For example entertainment.php displays Entertainment section; game.php displays Games section.
The content of the index.php page is as followed:
<HTML><HEAD><TITLE>INDEX</TITLE></HEAD><BODY>
<?include("top.php");?>
<?include("entertainment.php");?>
<?include("game.php");?>
...
<?include("footer.php");?>
</BODY></HTML>
The funny thing is that the PHP server always goes down whenever there are many requests coming in. I am using a dual CPU with 256MB of RAM.
Is there a restriction to the number of include statement I can use?
Furthermore, I see PHP.EXE processes being created and destroyed in Task Manager.
Anyone has any ideas?
Thanks.
-Dave