Extremely simple CMS

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
palmere
Forum Newbie
Posts: 17
Joined: Fri Mar 19, 2004 5:33 pm

Extremely simple CMS

Post by palmere »

I'm working with a band and I'd like to offer them a way to *simply* edit their shows list.

They don't have a database and I want to have them be able to reorder, so some simple text files that string multiple gigs together will not work.

What I'd like is a script that someone can log into and edit through a text field with html in it. I've been dinging around with this for a while, and I'm not sure if I make any sense any more. Let me know if you have any ideas. Thanks much

E
kettle_drum
DevNet Resident
Posts: 1150
Joined: Sun Jul 20, 2003 9:25 pm
Location: West Yorkshire, England

Post by kettle_drum »

Place the gigs in the order they want in a text file, show a form that lets them edit the order of these - dont know why you would want to though - surely the date order would be good enough. Then edit the file to reflect the changes - new gig on each line in the order they want them in.

Create a log-in or .htaccess script to protect it all.
User avatar
tim
DevNet Resident
Posts: 1165
Joined: Thu Feb 12, 2004 7:19 pm
Location: ohio

Post by tim »

fopen n fwrite would be some handy functions to research up on @ php.net

they provide good examples too
palmere
Forum Newbie
Posts: 17
Joined: Fri Mar 19, 2004 5:33 pm

Done and Done.

Post by palmere »

Thanks for the starting points. my remedial CMS system is now up and running. :)
User avatar
tim
DevNet Resident
Posts: 1165
Joined: Thu Feb 12, 2004 7:19 pm
Location: ohio

Post by tim »

awesome

congrats
Post Reply