Schlo_50 Posted April 21, 2007 Share Posted April 21, 2007 Hi guys, I am trying to create a control panel so that i can edit the content of a particular page via Internet Explorer without MySQL. I have cerated the login part of the panel and now have no clue to make the edit page script. My questions are: Can this be done and what script will do it? I'd like the script to be primarily HTML/PHP based. Any ideas anyone? Thanks in advance! Link to comment https://forums.phpfreaks.com/topic/48005-control-panel/ Share on other sites More sharing options...
We Must Design Posted April 21, 2007 Share Posted April 21, 2007 Why do you not want to use a database? This would definately be the best method of saving the information. You could store to a 'flat file' database (text file) but I would not recommend this. A mysql database is much more efficent. Link to comment https://forums.phpfreaks.com/topic/48005-control-panel/#findComment-234595 Share on other sites More sharing options...
Schlo_50 Posted April 21, 2007 Author Share Posted April 21, 2007 It's more expensive to have a MySQL database for the sake of one page. I'd prefer to just have a simple form that i can fill out, click submit and the changes are made. The changes made will litterally only be two or three sentences of text in the html body anyway. Cheers Link to comment https://forums.phpfreaks.com/topic/48005-control-panel/#findComment-234597 Share on other sites More sharing options...
Schlo_50 Posted April 21, 2007 Author Share Posted April 21, 2007 BUMP Link to comment https://forums.phpfreaks.com/topic/48005-control-panel/#findComment-234602 Share on other sites More sharing options...
AndyB Posted April 21, 2007 Share Posted April 21, 2007 If you don't want to use a MySQL database, then - as noted - you'll need to use a text file to store the content. Take a look in the manual for file operations such as fread() and fwrite() as well as file() Link to comment https://forums.phpfreaks.com/topic/48005-control-panel/#findComment-234673 Share on other sites More sharing options...
keeB Posted April 21, 2007 Share Posted April 21, 2007 I've always wanted to make a flat-text based database library. Link to comment https://forums.phpfreaks.com/topic/48005-control-panel/#findComment-234685 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.