カスタムワードプレスフォームがありますが、入力して送信をクリックすると、データがDBのテーブルに保存され、次のページに転送されると予想される空白のページが表示されます
ここに私の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");
?>
誰かが助けてくれることを願っています
ありがとう