Norman 4 Posted July 9, 2007 Report Share Posted July 9, 2007 Right now, I'm trying to develope my music band web site. I was thinking in something like this: Web Site Main Folder:(content)--band---My Name---My bassist Name---My drummer NameAnd there, I would like to have a "personal page" for each member (me, bassist, drummer). So, I need something like an account permissions system. If you login with these datas (user and pass), you can add content to your page: 'aaaa', 'aaaa'. One account for each member. Something like this. My question is: how can I do this? Wich is the best way? Please, remember that I'm a really noob in this type of things. Quote Link to post Share on other sites
justsomeguy 1,135 Posted July 9, 2007 Report Share Posted July 9, 2007 You'll need to set up a database to hold the accounts and set up PHP to read the username and password they typed in and check them against the database. Quote Link to post Share on other sites
jah-dev 0 Posted July 10, 2007 Report Share Posted July 10, 2007 If it is just for a few band members you could save yourself the cost of hosting a database and just hard-code the member's login details into your PHP code... You could then store their profile pages in XML and use PHP's simpleXML functions to update their profiles when they submit an amendment form online. That's what I'd do anyway Quote Link to post Share on other sites
boen_robot 107 Posted July 10, 2007 Report Share Posted July 10, 2007 If it is just for a few band members you could save yourself the cost of hosting a database and just hard-code the member's login details into your PHP code... You could then store their profile pages in XML and use PHP's simpleXML functions to update their profiles when they submit an amendment form online. That's what I'd do anyway Amin to that . The only difference with me is that I'd use DOM instead, but that's not for anyone, so SimpleXML is still a good solution. Quote Link to post Share on other sites
dcole.ath.cx 0 Posted July 10, 2007 Report Share Posted July 10, 2007 Why not use blogging software like WordPress... you can customize the HTML and CSS to have your own unique look, plus it already has all the hard work done for you, such as the PHP with a login.WordPress allows you to register users and they can make and change pages if the admin give them permissions. You can easy put forums, polls, and anything most web developers can think of on it. Quote Link to post Share on other sites
Norman 4 Posted July 11, 2007 Author Report Share Posted July 11, 2007 Thank you, guys. Yes, I really think I will use a Content Management System. Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.