I have a website, which based on the login Roles may allow a user to get to an admin page to create a "blog". I am simply using the AJAX html editor to allow them to develop their blog content and I save that information in a database. Of course when a viewer comes along I simply load the data from my database to build the web page. I also have a detail table for blog comments.
So now I want to add the ability for the blogger to be able to upload graphics (png, jpg, bmp, etc..) and then insert them into the blog page (AJAX html editor).
Also anyone who wishes to post "comments" about the blog must create a user account and be logged in. I already have established my own custom profile table to contain custom information about each user. I want to allow the user to be able to upload a picture (avatar) of themselves to show next to any comments they post.
My question(s) are concerning the best practices for the overall p ...
Go to the complete details ...