Jump to content

WHMCS & Wordpress MU (Multisite)


Yameen

Recommended Posts

I just purchased my license and I am thrilled with the decision but I am worried it cannot complete the task I need it to:

 

Once a customer completes the order via WHMCS then it should create a new database line in a database I specify.

 

I do not need it to do anything else but create a new line in a database I specify.

 

Can this be done??

Link to comment
Share on other sites

function add_db_row($params) {
 $db = mysql_connect("dbhost", "dbuser", "dbpass") or die("Error connecting to database.");
 mysql_select_db($dbname, $db) or die("Could not select database.");
 $sql = "INSERT INTO `tablename` (`col1`, `col2`, `col3`) VALUES ('val1', 'val2', 'val3')";
 mysql_query($sql);
}

add_hook("AfterModuleCreate", 1, "add_db_row");

 

http://docs.whmcs.com/Action_Hooks

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated