2016-07-06 9 views
1

einfügen Bitte gehen Sie durch den untenstehenden Code, ich versuche, meine Daten Kontaktformular 7 in meine MySQL-Tabelle (d. H. Wp_tps_forms) einfügen. In diesem Fall kopiere ich Paste unter Code in meiner functions.php-Datei des Themas, aber es hat nicht funktioniert.Wie Kontaktformular 7 Daten in MySQL-Datenbank in WordPress

add_action('wpcf7_before_send_mail', 'save_form'); 
function save_form($wpcf7) 
{ 
    global $wpdb; 
    $title = $wpcf7->title(); 

    $company_name=$wpcf7->posted_data["company-name"]; 
    $email=$wpcf7->posted_data["your-email"]; 
    $start_year=$wpcf7->posted_data["start-year"]; 
    $team=$wpcf7->posted_data["team"]; 
    $business_model=$wpcf7->posted_data["business-model"]; 
    $sub_category_business=$wpcf7->posted_data["sub-category-business"]; 
    $competition=$wpcf7->posted_data["competition"]; 
    $phase_of_business=$wpcf7->posted_data["phase-of-business"]; 
    $stage_of_product=$wpcf7->posted_data["stage-of-product"]; 
    $customer_traction=$wpcf7->posted_data["customer-traction"]; 
    $estimate_funding=$wpcf7->posted_data["estimate-funding"]; 
    $website_url=$wpcf7->posted_data["website-url"]; 
    $contact_number=$wpcf7->posted_data["contact-number"]; 
    $what_does_your_company_do=$wpcf7->posted_data["what-does-your-company-do"]; 
    $core_team=$wpcf7->posted_data["core-team"]; 
    $what_is_unique_selling_point=$wpcf7->posted_data["what-is-unique-selling-point"]; 
    $go_to_market=$wpcf7->posted_data["go-to-market"]; 
    $any_other_information=$wpcf7->posted_data["any-other-information"]; 
    $link_to_url=$wpcf7->posted_data["link-to-url"]; 
    $file=$wpcf7->posted_data["file-01"]; 

    $wpdb->insert($wpdb->prefix . 'tps_forms', 
      array('id' => '','form' => $submited['title'],'company-name'=> '$company_name','your-email' => '$email','start-year' => '$start_year','team' => '$team','business-model' => '$business_model','sub-category-business' => '$sub_category_business','competition' => '$competition','phase-of-business' => '$phase_of_business','stage-of-product' => '$stage_of_product','customer-traction' => '$customer_traction','estimate-funding' => '$estimate_funding','website-url' => '$website_url','contact-number' => '$contact_number','what-does-your-company-do' => '$what_does_your_company_do','core-team' => '$core_team','what-is-unique-selling-point' => '$what_is_unique_selling_point','go-to-market' => '$go_to_market','any-other-information' => '$any_other_information','link-to-url' => '$link_to_url','file-01' => '$file','date' => date('Y-m-d H:i:s'))); 
} 

Bitte schlagen Sie mir den richtigen Weg vor, dies zu tun.

+0

Was bedeutet „es nicht gemein funktioniert“? Haben Sie einen Fehler bekommen oder wurde die DB nicht aktualisiert –

+0

Datenbank wird nicht aktualisiert – Kaloupi

+0

Wir müssen auf jeden Fall mehr wissen. Warum nicht einfach dieses bewährte Plugin verwenden? https://wordpress.org/plugins/contact-form-7-to-database-extension/ – Fencer04

Antwort

0

@ Fender04 Vorschlag, Contact Form 7 To Database Extension zu verwenden, ist wahrscheinlich ein großer Vorsprung und Zeitsaver.

Wenn Sie jedoch Ihren Einsatz Problem beheben wollen, ich schlage vor, Sie versuchen, Ihre Insert-Funktion zu aktualisieren wie folgt (read more on $wpdb):

$wpdb->insert( 
'wp_table',        // the table prefix and name 
    array(
     'company-name'=> $company_name, // single quote the key, do not quote variables 
     'start-year' => $start_year // single quote the key, do not quote variables 
     ) 
    ), 
    array(        // optional, but wise, include array telling wordpress the datatype 
     '%s',       // corresponds to company-name, string 
     '%d'        // corresponds to start year, digit 
    ) 
} 
Verwandte Themen