Please help..I found an old script which offer members so they can add buddylist, but I get this error when I want to add buddy:
MySQL Query Error: UPDATE members SET buddylist='demo,' WHERE id='1' LIMIT 1;
Returned Error: Unknown column 'buddylist' in 'field list'
I locate back the buddylist.php and I have this line:
if($newbuds != ""){
$newbuds = $User->userdata['buddylist'].$newbuds;
$Db->query("UPDATE members SET buddylist='{$newbuds}' WHERE id='{$User->id}' LIMIT 1;");
}
Thanks in advance..