Hi Mark,
You helped me to develop a ranking system but I now wonder if it can be made more sophisticated.
(1) I want to modify the following code
if ($points > 100 && $points < 200) {
echo '<img src="
http://cloud.stackideas.com/path/to/your/badge3.png" />';
}
So that.....
If (points greater than 100 but less than 200) AND (create.comment badge achieved) AND (reply.question badge achieved) AND (followers.follow badge achieved)
THEN echo '<img src="
http://cloud.stackideas.com/path/to/your/Celebrity.png" />';
(2) But if the above is not achievable, how about
If (points greater than 100 but less than 200) AND (create.comment points greater than 300) AND (reply.question points greater than 250) AND (followers.follow points greater than 800)
THEN echo '<img src="
http://cloud.stackideas.com/path/to/your/superbadge.png" />';