我是新來php驗證。我正在處理註冊表單,該表單將通過php腳本檢查兩個不同的變量ac_title
和email
,然後檢查錯誤。它會將給定的值插入到數據庫中。文件名是formvu.php
然後它將移動到activate.php
。我得到的問題是,如果我使用提交按鈕不首先檢查php腳本。
<form name="fone" method="post" onsubmit="return validateform(fone)" action="activate.php">
表單將忽略php腳本,它將移動到下一頁。 Buh當我用這個:
<form name="fone" method="post" onsubmit="return validateform(fone)" action="<?php $_SERVER['PHP_SELF']?> ">
現在頁面它會運行整個php錯誤和命令。
這是我整個的PHP代碼:
<?php
if($_SERVER["REQUEST_METHOD"] == "POST")
{
$nun=$_POST['account'];
$em=$_POST['email'];
$register="SELECT ac_title,email FROM register";
$query=mysql_query($register);
while ($row= mysql_fetch_array($query))
{
if ($nun == $row['ac_title'])
{
print "<span class=\"phclass\"><br/><b>
Your Account Title :</b></span>"." '"."<span class=\"ahclass\"><b>$nun</b></span>"."'".
" <span class=\"phclass\"><b>already exsist, please choose different.</b></span><br/>";
}
if($em == $row['email'])
{
print "<span class=\"phclass\"><b><br/>Your Email:</b>
</span>"." "."<span class=\"phclass\"><b> $em</b></span>"."<span class=\"phclass\">
<b> already exsist, please visit <a href=\"resetpassword.html\">
Forget password</a></b></span><br/>";
}
if ($nun != $row['ac_title'] && $em != $row['email'])
{
$ac_title=$_POST['account'];
$email=$_POST['email'];
$pass=$_POST['pwd'];
$fn=$_POST['fname'];
$gd=$_POST['gender'];
$city=$_POST['city'];
$VID=$_POST['vuid'];
$course=$_POST['courseid'];
$camp=$_POST['campus'];
$hash=md5(rand(0,1000));
$sql="INSERT INTO register (ac_title, email, pass,fn, sex, city,
VID, CRS, campus, hash,activate) VALUES('$ac_title', '$email',
'$pass','$fn', '$gd',' $city','$VID','$course',
'$camp','$hash','0')";
$inst=mysql_query($sql,$connection);
if (!$inst)
{
print "";
}
else
{
echo "Succesful ";
}
}// if
} // while
} // if
?>
如果操作爲默認頁面它將運行整個腳本。我想運行整個腳本並轉到下一頁(activate.php
)。
檢查[頭](http://php.net/manual/en/function.header.php)重新定位腳本的功能(請注意,NOTHING可以輸出 - 也就是說,在重定向之前不必寫HTML) –
ic hecked header()它給了我錯誤,我發佈了...意味着我需要發佈該PHP腳本之前,我的html編碼 –
正是我爲什麼把大寫字母「NOTHING」 - 你在調用'header之前輸出HTML ()'在你的頁面上的某處。不要這樣做,移動你的PHP處理部分高於你的第一個''標籤,並使用帕特里克的代碼重定向 –