arstacey Posted August 25, 2008 Share Posted August 25, 2008 I have a one page site on our intranet that basically lists several of our local systems and says if there are any reported issues. Looks something like: System 1 - No reported issues System 2 - Down for maintenance etc etc Right now, if I need to make a change, I have to actually edit the html portion of the page manually. This is fine for me but there are other people on our helpdesk who do not have this sort of experience nor access to the server. Is there a way for me to code something that would give a user the ability to pull up a page, possibly a form, where they can input text and when submitted, it will update the page in question. Any help would be greatly appreciated. Link to comment https://forums.phpfreaks.com/topic/121257-script-to-change-the-text-on-an-html-page/ Share on other sites More sharing options...
php_b34st Posted August 25, 2008 Share Posted August 25, 2008 Yes this is possible with php. you will need to create a database like id | system | status you will need a page which will show the data, this page will simply pull all the data from the database and display it (replacing your current html file) then you will need a page with a form on it which will allow users to update the database when the status of each system changes Link to comment https://forums.phpfreaks.com/topic/121257-script-to-change-the-text-on-an-html-page/#findComment-625145 Share on other sites More sharing options...
arstacey Posted August 25, 2008 Author Share Posted August 25, 2008 Do you know of a way to do this without using a database? The site this is hosted on does not provide us with a database and our owner will not pay the additional cost for one. Link to comment https://forums.phpfreaks.com/topic/121257-script-to-change-the-text-on-an-html-page/#findComment-625153 Share on other sites More sharing options...
Mchl Posted August 25, 2008 Share Posted August 25, 2008 If there's no database, then there's probably no PHP support as well. That's a tough situation. If there was PHP available, data could be loaded from plain txt files, which is some imrovement already. Link to comment https://forums.phpfreaks.com/topic/121257-script-to-change-the-text-on-an-html-page/#findComment-625162 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.