already tried this code
PHP Code:
$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "customtable
(userid, friendid)
VALUES
(1, " . $userid . ")
");
or this
PHP Code:
$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "customtable
(userid, friendid)
VALUES
(1, $userid)
");
with hook register_addmember_complete, but nothing new line created in the table, is it i already right write the code?
btw my first code
PHP Code:
$vbulletin->db->query_write("INSERT INTO " . TABLE_PREFIX . "customtable
(userid, friendid)
VALUES
(1, " . $vbulletin->userinfo['userid'] . ")
");
work created new line & get the userid, with hook global_start, maybe this is alternative way, but only need 1 line for each member, that is after registering,
i try wrap with these if conditional but its still not right :
if ($show['member'])
{
if (THIS_SCRIPT == 'register')
{
// above my first code
}
}
please give suggestion any hook or methode that will work like i need above