Hi all,
our users confused about the standard-functions "friend request"
I?ve tried to make it easier, with following code
but it doesn?t work:
Friend Request:
PHP Code:
if ($_REQUEST['do'] == 'addlist')
{
$_REQUEST['do'] = 'addlist';
$_POST['friend'] = 1;
}
with this code, the checkbox should automaticly post as checked
Delete Friend:
PHP Code:
if ($_REQUEST['do'] == 'removelist')
{
$_REQUEST['do'] = 'removelist';
$_POST['friend'] = 1;
}
What?s wrong on this code? maybe its not possible to make it work?
TIA
Chris