hey guys who can help me i found this code here i want the genproc and core for this
Code:
else if($action=="moods")
{
echo "<head>";
echo "<title>Set OnlineList Mood</title>";
echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"../themes/$theme[0]\">";
echo "</head>";
echo "<body>";
echo "<p align=\"center\">";
$mmsg = htmlspecialchars(getsetmood(getuid_sid($sid)));
$uid = getuid_sid($sid);
echo "<form action=\"genproc.php?action=upmood&sid=$sid\" method=\"post\">";
echo "<select name=\"Mood\">";
echo "<option value=\"01\">Im Sweet</option>";
echo "<option value=\"black\">Im Sexy</option>";
echo "<option value=\"red\">Im Angry</option>";
echo "<option value=\"blue\">Im Happy</option>";
echo "<option value=\"green\">Im Sad</option>";
echo "</select>";
echo "<input type=\"Submit\" name=\"submit\" Value=\"Submit\"></form>";
echo "<a href=\"index.php?action=main&sid=$sid\"><img src=\"images/home.gif\" alt=\"\"/>Home</a>";
echo "</p>";
echo "</body>";
}
Comment