Forum Moderators: coopster
Also, I wouldent use post directly to the file that is being included within the pages. What I would do it post the data to a script file that isn't part of the site, have this file do the writing and then have the included fie do the reading.
One thing that springs to mind is this...
If you are writing your status info to a database does the status.php file have a database connection?
For example if your pages where set up like this...
include 'header.php';
include 'db.php';
include 'status.php';
echo 'content here';
include 'footer.php';
In the above example status.php would be able to work because the page, as a whole has a db connection, but if you simply opened status.php on its own it would have no way to connect to the database.
Mack.