0

カスタムワードプレスフォームがありますが、入力して送信をクリックすると、データが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"); 
?>

誰かが助けてくれることを願っています

ありがとう

4

2 に答える 2

0

したがって、次の方法で解決されます。

  1. action="localhost/wordpress/process.php" を使用します。現在のものの代わりに

  2. for : $name=$_POST["名前"]; $telephone=$_POST["電話"]; $fax=$_POST["ファックス"]; $webaddress=$_POST["ウェブアドレス"]; $state=$_POST["状態"]; $address=$_POST["アドレス"];

すべての大文字が小文字に変更され、"" が '' に置き換えられました

みんなありがとう

于 2013-05-04T07:39:21.437 に答える