hmm..how spooky is this? I got the hack almost finished and now the code dont works anymore, i'm using this code at the moment:
PHP Code:
if ($post[award]=="1")
{
$awards=$DB_site->query("SELECT * FROM useraward where userid=$post[userid]");
while ($award=$DB_site->fetch_array($awards))
{
if ($award[awardsid] == $award[aw])
{
eval("\$post[hasaward] .= \"".gettemplate("awards")."\";");
} else {
$post[hasaward]="";
}
}
}
I have currently 3 awards in the database.
Lesane = checked
Lala = checked
Cool = not checked
It must display lesane + lala because they are checked but it displays nothing, it listen only to cool. When i have cool = checked then it displays everything so the script listen
again only to the last entry in the database
Do you see any problem in the code that i dont see or do you know an other way? Thanks.