Greetings all,
The host I use does not let me have mysql so I am going to need to write a comment engine that uses flat files. Unless of course there are commenting solutions already available that do not use mysql.
So now lets talk about how this is going to work... (your input is appreciated). I think we are going to need a couple things, an admin panel and the UI. The user is going to need a UI, so we will have a few fields, probably name, email address, comment area, and a captcha. Captcha is needed to prevent spam. The user will fill out the form, (name, comment and captcha will be required) and the comment will be stored in a file somewhere. Now this is where it gets a little tricky because I'm not a web programmer, the comment gets stored in a file, the file will need to have some kind of identifier that maps it to the page that is being commented on. Then the rendering php will grab the comment information in the file and reload the page with the comments rendered at the bottom.
How is that for a preliminary idea. Anyone have any thoughts on important cases that have not been considered? We haven't looked at the admin side of this yet but I want to get one side working before I start in on the other.
The host I use does not let me have mysql so I am going to need to write a comment engine that uses flat files. Unless of course there are commenting solutions already available that do not use mysql.
So now lets talk about how this is going to work... (your input is appreciated). I think we are going to need a couple things, an admin panel and the UI. The user is going to need a UI, so we will have a few fields, probably name, email address, comment area, and a captcha. Captcha is needed to prevent spam. The user will fill out the form, (name, comment and captcha will be required) and the comment will be stored in a file somewhere. Now this is where it gets a little tricky because I'm not a web programmer, the comment gets stored in a file, the file will need to have some kind of identifier that maps it to the page that is being commented on. Then the rendering php will grab the comment information in the file and reload the page with the comments rendered at the bottom.
How is that for a preliminary idea. Anyone have any thoughts on important cases that have not been considered? We haven't looked at the admin side of this yet but I want to get one side working before I start in on the other.
Comment