user editable content

Hi, I’m doing a website for a golf society and they want a page on the site where members can add their names to a knockout competition results sheet.
I would want to layout the page and leave boxes where individual members can fill in their names as they win their match. I guess it would be a modified guestbook. Any ideas? Thanks

In such tasks usually the content is stored in the database (MySQL, Postgres etc.). First you’ll need to design database structure, for example you can have two tables: members and results, then define fields for each of these tables. Then you will need to program interfaces in PHP: member interface (where members can register/login and add/edit their info), visitor interface - query and display current data from database, and maybe also admin interface where site admin can add/edit/delete any record.

Sponsor our Newsletter | Privacy Policy | Terms of Service