如何将联系表单7数据插入wordpress中的mysql数据库

问题描述 投票:1回答:1

请仔细阅读以下代码,我试图将我的联系表格7数据插入我的mysql表格(即wp_tps_forms)。在这种情况下,我复制主题的functions.php文件中的代码下面的粘贴,但它没有用。

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')));
}

请建议我这样做的正确方法。

php mysql wordpress contact-form
1个回答
0
投票

@ Fencer04建议使用Contact Form 7 To Database Extension可能是一个伟大的领导和节省时间。 插件不可用。

但是,如果您确实想解决插入问题,我建议您尝试更新插入函数,如下所示(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
    )
}
© www.soinside.com 2019 - 2024. All rights reserved.