Saving contact form 7 data into custom db and not wordpress db
问题 I am using contact form 7 for creating my form and I have a custom db hosted in the same server that should contain the related data. I want to store the data from the contact from7 into my custom db and not a wordpress db. I am doing the below in functions.php now, add_action('wpcf7_before_send_mail', 'save_form'); function save_form($wpcf7) { /* For connecting to database */ $dbuser = "user"; $dbpass = "pass"; $dbhost = "localhost"; $dbname = "cistom_db"; // Connect to server and select