The query in the instructions is incorrect, the number of comments won't work with that. Because you can't increase a
NULL value with +1 like the usernote.php tries to do when you have posted a new comment.
How to fix:
In the instructions, replace this:
Code:
ALTER TABLE user ADD notescount INT(11)
With this:
Code:
ALTER TABLE user ADD notescount INT(11) DEFAULT 0 NOT NULL
Polo: Here's a demo:
http://www.emutalk.net/album.php
Other than that, a great addition, thanks for taking your time to create this.