我只是想通过php将html表单中的数据处理到wordpress数据库中。我多次尝试插入数据,但都没有成功。
设置如下:数据库名称:seanmcve\\u AssociationNational:associationThe row I want data entered in:association\\u first\\u name
我已经设置了一个名为form\\u processing\\u template的页面模板。php。
<?php
/*
Template Name: form processing template
*/
?>
<form action="" method="post">
<h4><strong>What is the legal name of your association?</strong></h4>
<input name="legalName" type="text" placeholder="Association Name" />
<input type="submit" name="submit" value="Submit" />
</form>
<?php
If($_POST[\'submit\']) {
// run validation if you\'re not doing it in js
$legalname=$_POST[\'legalName\'];
echo $legalname;
$wpdb->insert(\'association\',
array(
\'association_first_name\' => \'$legalname\'
),
array(
\'$s\',
)
);
}
?>
<?php x_get_view( x_get_stack(), \'wp\', \'page\' ); ?>
我回显这个变量只是为了确保它是正确的和有效的(这是有效的),我一直在引用wpdb类引用页面,但仍然没有运气。有人能给我指出正确的方向吗?