TouchingVirus
04-01-2004, 02:41 PM
This is a little bit of a cry for help, so please feel free to move it to the approriate forum because i couldnt find one except this...
I have a hack that displays a stat on the posbit/postbit_legacy.. lets call it valueable_posts
Well this is my problem. I am an admin, i dont want people (including myself) to see what valueable_posts i have or havnt got (coz the value is almost always 0 for the whole admin team :nervous: )
I tried to use the following code
$value_post =$DB_site->query_first("SELECT valuenumber FROM valuepost WHERE userid='$post[userid]'");
$posts_valued=$value_post['valuenumber'];
if ($post[userid]='1')
{
$value_template = '';
}
else
{
eval('$value_template = "' . fetch_template('valuetemplate') . '";');
}
This doesnt work, instead of it showing anything, for every user it shows nothing at all..
I did a simple "echo $post[userid]" before my if statement, and it showed up correctly at the top of the page. I then put in another "echo $post[userid]" statement during the if statement and for some unknown reason, the results always came back as '1'..no matter what user logged in.
Could you please help me as to how i can acheive my goal?
I have a hack that displays a stat on the posbit/postbit_legacy.. lets call it valueable_posts
Well this is my problem. I am an admin, i dont want people (including myself) to see what valueable_posts i have or havnt got (coz the value is almost always 0 for the whole admin team :nervous: )
I tried to use the following code
$value_post =$DB_site->query_first("SELECT valuenumber FROM valuepost WHERE userid='$post[userid]'");
$posts_valued=$value_post['valuenumber'];
if ($post[userid]='1')
{
$value_template = '';
}
else
{
eval('$value_template = "' . fetch_template('valuetemplate') . '";');
}
This doesnt work, instead of it showing anything, for every user it shows nothing at all..
I did a simple "echo $post[userid]" before my if statement, and it showed up correctly at the top of the page. I then put in another "echo $post[userid]" statement during the if statement and for some unknown reason, the results always came back as '1'..no matter what user logged in.
Could you please help me as to how i can acheive my goal?