Quote:
Originally Posted by rob30UK
I need to run the following SQL via a plugin...
Code:
INSERT INTO `subscribeforum` ( `subscribeforumid` , `userid` , `forumid` , `emailupdate` )
VALUES ( NULL , $userid, '7', '2'
);
What syntax would I use within the plugin code to perform the above as I understand VB has dataobjects I can tie into?
Thanks for help.
|
PHP Code:
$vbulletin->db->query_write("INSERT INTO `subscribeforum`
(`subscribeforumid` , `userid` , `forumid` , `emailupdate` )
VALUES ( NULL , $userid, '7', '2')
");