0

我有一个自定义的 word press 表单,但是当我填写并单击提交时,我只得到一个空白页,我期望我的数据将存储在数据库中的表中,然后转发到下一页

这是我的html代码+表单验证代码(WP端):

    <html>
    <body>
<form action="C:\xampp\htdocs\wordpress\process.php" method="post" name="myForm">
Name <input id="name" type="text" name="name" />
Telephone <input id="telephone" type="text" name="telephone" />
Fax <input id="fax" type="text" name="fax" />
Web address <input id="webaddress" type="text" name="webaddress" />
State <input id="state" type="text" name="state" />
Address <input id="address" type="text" name="address" />
<input type="submit" value="Submit" /></form>
    <\html>
    <\body>


<script type="text/javascript">// <![CDATA[
/* JS validation code here */
function validateForm()
{
/* Validating name field */
var x=document.forms["myForm"]["name"].value;
if (x==null || x=="")
{
alert("Name must be filled out");
return false;
}
/* Validating email field */
var x=document.forms["myForm"]["telephone"].value;

if (x==null || x=="")
{
alert("telephone must be filled out");
return false;
}
} 
// ]]></script>

这是数据存储功能的 php:

<?php 
//establish connection
$con = mysqli_connect("localhost","XXX","XXX","android_app"); 
//on connection failure, throw an error
if(!$con) {  
die('Could not connect: '.mysql_error()); 
} 
?>

<?php 
//get the form elements and store them in variables
$name=$_POST["Name"]; 
$telephone=$_POST["Telephone"]; 
$fax=$_POST["Fax"]; 
$webaddress=$_POST["Webaddress"]; 
$state=$_POST["State"]; 
$address=$_POST["Address"]; 
?>

<?php 
$sql="INSERT INTO `android_app`.`islamic_organisation` ( `Name` , `Telephone` , `Fax` , `WebAddress` , `state` , `Address`) VALUES ( '$name','$telephone', '$fax', '$webaddress' , '$state', '$address')"; 
    mysqli_query($con,$sql); 
?>

<?php
//Redirects to the specified page
header("Location: http://localhost/wordpress/?page_id=857"); 
?>

我希望有人可以提供一些帮助

谢谢

4

2 回答 2

0

所以现在解决了:

  1. 使用 action="localhost/wordpress/process.php"; 而不是当前的

  2. 对于:$name=$_POST["Name"]; $telephone=$_POST["电话"]; $fax=$_POST["传真"]; $webaddress=$_POST["网址"]; $state=$_POST["状态"]; $address=$_POST["地址"];

所有的大写字母都变成了小字母,“”被替换为“”

这就是我想谢谢大家

于 2013-05-04T07:39:21.437 回答
0

Wordpress 似乎不喜欢像"name""year"和其他一些输入字段名称。

尝试重命名这些字段名称,使它们更具体。

于 2013-05-03T14:41:32.273 回答