folks I want to knock up a page that users can visit to find out the status of something. It only really needs to return "yes" or "no". Users also need to be able to toggle the status by clicking a link so that other users can see it. I imagin the page markup would look like this:
<body>
<h1>No</h1>
<a href="?status=yes">set status to yes</a>
</body>
I guess the easiest way to do this would be to have a txt file on the server which php can update when a user clicks a link. The trouble is I have no idea how to do this. Any pointers would be greatly appreciated.