Would any of you guys know the code to develop an inline commenting system on articles? Like the kind you see in blogs were a user posts a reply and it gets appended at the end of the page like magic.
It's a fairly simple script but implementing it would be totally dependant on where exactly you were trying to set it up. Basically you need an html form and a script to process the form. Add the user input to a database field and on the blog page just pull the comments out of the database and sort them by the order they were entered.
How are your articles, postings, other content etc. stored at the moment? Usually, you would create a database table with a key that is associated with the ID of the content item along with fields for comment author, date, the comment itself etc. Then it is just a matter of adding a form, validating input and adding a record into the database. You could try looking at the code of CMS/blog systems or try and find some tutorials to help.