INSTALLED. Works great. Thanks again for doing this, I owe you some beers Jordan.
Couple little things that would just be icing.
1) It would be nice if when I go to my profile it remembers which one I have selected. Currently it does not and always displays 'Do not display mood.'
2) When one selects a mood, it would be cool if it displayed the selected mood bar in real time in the profile. I am too buzzed on wine to do this, but here is my original code that did this:
Code:
<script language="JavaScript1.2" type="text/javascript">
function showmood()
{
if (!document.images) return;
document.images.moodpics.src="http://www.yoursite.com/forums/images/moods/"+document.creator.mood.options[document.creator.mood.selectedIndex].value+".gif";
}
</script>
<td><font size=2><select name="mood" size=6 onChange="showmood()">
<option selected value="Happy">Happy</option>
<option value="Aggressive">Aggressive</option>
<option value="Amazed">Amazed</option>
<option value="Angry">Angry</option>
</select></font>
<img src="http://www.yoursite.com/forums/images/moods/blank.gif" name="moodpics" border=0 hspace=15>
Regardless, thanks again. I really appreciate it.
caliman