hey all,
im looking for help/info on the steps to take to gradually create my own multi-user blogging system using php and mySQL
all I have done so far is the User Authentication where you can login or register to gain access to a 'members' page.
the info i have in a database table called members is username, password and email address, username being the key.
whenever I start thinking of the next thing to get started on, it ends up becoming something that seems impossible for someone like me with a limited knowledge of php and mySQL, so what im really looking for is someone to give me a push in the right direction.
what im thinking of trying to produce next is:
i simple blog submition form just submitting username, title, content and date
then on the members page a simple list, listing the users blogs and options to edit or delete them.
this seems a good starting point to me, saying that, i am unsure how to make the list display by date.
does this seem like a good starting point to anyone?
thanks.
Also (forgot to say):
When users register what files should i be creating for them to use as there own blog page? should i create a directory called there username to hold their files? or... to display a users blog, should i just have a viewblog.php page which has code to display one users settings?