hi there,
i want the following: if i have a request for friendship, then there should be "you have friends" on a special site. now i have the following:
function friedchecker()
{
$fabfrage = db_arr( "SELECT `Check` FROM `FriendList` WHERE `ID`='{$memberID}' " );
}
if ( $fabfrage = 0)
{
echo 'you have a friend request';
}
but it do not work!
i have embedded it in functions.php in template directory, because i want to show new requests on top of the site
thanx