|
|
|
ผมทำระบบสมัครสมาชิกเส็จเรียบร้อยแล้ว ป้องกันช่องว่างได้ แต่ปันหาคือ ถ้าลืมเปลี่ยนภาษาแล้วพิม สระ อิก่อนมันจะไม่แสดงแต่มันไม่คิดเป็นช่องว่าง จะแก้ยังไงครับ |
|
|
|
|
|
|
|
นี่โค๊ตที่ผมหัดเขียนครับ ทำงานปกติติดตรงถ้าลืมเปลี่ยนภาษาแล้วไปพิมสระ อิก่อน มันจะไม่ขึ้นอะไรเหมือนเป็นช่องว่าง แต่จริงๆแล้วไม่ใช่ช่องว่าง จะแก้ยังไงมันเป็นช่องว่างครับ
Code (PHP)
<?php
require('Connections/Myconnect.php');
if(trim($_POST["txtName"]) == "")
{
echo "คุณกรอกข้อมูลไม่ครบทุกช่อง!<br>";
echo "<br> Go to <a href='Register.php'>Register</a>";
exit();
}
if(trim($_POST["txtUsername"]) == "")
{
echo "คุณกรอกข้อมูลไม่ครบทุกช่อง!<br>";
echo "<br> Go to <a href='Register.php'>Register</a>";
exit();
}
if(trim($_POST["txtPassword"]) == "")
{
echo "คุณกรอกข้อมูลไม่ครบทุกช่อง!<br>";
echo "<br> Go to <a href='Register.php'>Register</a>";
exit();
}
if(trim($_POST["txtConpassword"]) == "")
{
echo "กรุณากรอก password ซ้ำอีกครั้ง";
echo "<br> Go to <a href='Register.php'>Register</a>";
exit();
}
if($_POST["txtPassword"] != $_POST["txtConpassword"])
{
echo "Password not Match";
echo "<br> Go to <a href='Register.php'>Register</a>";
exit();
}
if(trim($_POST["Sex"]) == "")
{
echo "กรุณาเลือกเพศ";
echo "<br> Go to <a href='Register.php'>Register</a>";
exit();
}
if(trim($_POST["txtAge"]) == "")
{
echo "คุณกรอกข้อมูลไม่ครบทุกช่อง!<br>";
echo "<br> Go to <a href='Register.php'>Register</a>";
exit();
}
else if(!is_numeric(trim($_POST["txtAge"])))
{
echo "อายุต้องเป็นตัวเลขเท่านั้นครับ";
echo "<br> Go to <a href='Register.php'>Register</a>";
exit();
}
if(trim($_POST["txtWeight"]) == "")
{
echo "คุณกรอกข้อมูลไม่ครบทุกช่อง!<br>";
echo "<br> Go to <a href='Register.php'>Register</a>";
exit;
}
else if(!is_numeric(trim($_POST["txtWeight"])))
{
echo "น้ำหนักต้องเป็นตัวเลขเท่านั้นครับ";
echo "<br> Go to <a href='Register.php'>Register</a>";
exit();
}
if(trim($_POST["txtHeight"]) == "")
{
echo "คุณกรอกข้อมูลไม่ครบทุกช่อง!<br>";
echo "<br> Go to <a href='Register.php'>Register</a>";
exit;
}
else if(!is_numeric(trim($_POST["txtHeight"])))
{
echo "ส่วนสูงต้องเป็นตัวเลขเท่านั้นครับ";
echo "<br> Go to <a href='Register.php'>Register</a>";
exit();
}
$strSQL = "SELECT * FROM member WHERE user_name = '".trim($_POST["txtUsername"])."' ";
$objQuery = mysql_query($strSQL);
$objResult = mysql_fetch_array($objQuery);
if($objResult)
{
echo "Username นี้มีอยู่ในระบบแล้ว กรุณากรอกใหม่!";
echo "<br> Go to <a href='Register.php'>Register</a>";
}
else
{
$strSQL = "INSERT INTO member (name,user_name,user_password, sex,age,weight,height) VALUES ('".$_POST["txtName"]."','".$_POST["txtUsername"]."' ,'".$_POST["txtPassword"]."','".$_POST["Sex"]."','".$_POST["txtAge"]."' ,'".$_POST["txtWeight"]."','".$_POST["txtHeight"]."')";
$objQuery = mysql_query($strSQL) or die (mysql_error());
echo "Register Completed!<br>";
echo "<br> Go to <a href='Login.php'>Form login</a>";
}
mysql_close();
?>
Tag : PHP
|
|
|
|
|
|
Date :
2015-12-13 23:23:06 |
By :
sicholkoong |
View :
871 |
Reply :
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$source = preg_replace('/^[ิีึืุู]+(.+)/u', '', $source);
|
|
|
|
|
Date :
2015-12-14 04:50:02 |
By :
NewbiePHP |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เด่วลองดู ขอบคุณครับ
|
|
|
|
|
Date :
2015-12-16 01:58:42 |
By :
sicholkoong |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
filter_var($string , FILTER_SANITIZE_URL); //ฟังก์ชั่นทำลายภาษาไทย
Code (PHP)
$string = 'ิหกดหกดABC';
$final_string = filter_var($string , FILTER_SANITIZE_URL);
echo $final_string . ' : ' . strlen($final_string); // ABC : 3
|
|
|
|
|
Date :
2015-12-16 13:30:37 |
By :
noMerzy |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณพี่ๆ มากครับได้แล้ว ขอโทดทีตอบช้าครับ พอดีผมเพิ่งสอบ ไฟนอลเสด
Code (PHP)
<?php
require('Connections/Myconnect.php');
$nothaiuser = filter_var($_POST["txtUsername"] , FILTER_SANITIZE_URL);
$nothaipassword = filter_var($_POST["txtPassword"] , FILTER_SANITIZE_URL);
if(trim($_POST["txtName"]) == "")
{
echo "คุณกรอกข้อมูลไม่ครบทุกช่อง!<br>";
echo "<br> Go to <a href='Register.php'>Register</a>";
exit();
}
if(trim($nothaiuser == ""))
{
echo "คุณกรอกข้อมูลไม่ครบทุกช่อง!<br>";
echo "<br> Go to <a href='Register.php'>Register</a>";
exit();
}
if(trim($nothaipassword == ""))
{
echo "คุณกรอกข้อมูลไม่ครบทุกช่อง!<br>";
echo "<br> Go to <a href='Register.php'>Register</a>";
exit();
}
if(trim($_POST["txtConpassword"]) == "")
{
echo "กรุณากรอก password ซ้ำอีกครั้ง";
echo "<br> Go to <a href='Register.php'>Register</a>";
exit();
}
if($_POST["txtPassword"] != $_POST["txtConpassword"])
{
echo "Password not Match";
echo "<br> Go to <a href='Register.php'>Register</a>";
exit();
}
if(trim($_POST["Sex"]) == "")
{
echo "กรุณาเลือกเพศ";
echo "<br> Go to <a href='Register.php'>Register</a>";
exit();
}
if(trim($_POST["txtAge"]) == "")
{
echo "คุณกรอกข้อมูลไม่ครบทุกช่อง!<br>";
echo "<br> Go to <a href='Register.php'>Register</a>";
exit();
}
else if(!is_numeric(trim($_POST["txtAge"])))
{
echo "Age Weight Height ต้องเป็นตัวเลขเท่านั้นครับ";
echo "<br> Go to <a href='Register.php'>Register</a>";
exit();
}
if(trim($_POST["txtWeight"]) == "")
{
echo "คุณกรอกข้อมูลไม่ครบทุกช่อง!<br>";
echo "<br> Go to <a href='Register.php'>Register</a>";
exit;
}
else if(!is_numeric(trim($_POST["txtWeight"])))
{
echo "Age Weight Height ต้องเป็นตัวเลขเท่านั้นครับ";
echo "<br> Go to <a href='Register.php'>Register</a>";
exit();
}
if(trim($_POST["txtHeight"]) == "")
{
echo "คุณกรอกข้อมูลไม่ครบทุกช่อง!<br>";
echo "<br> Go to <a href='Register.php'>Register</a>";
exit;
}
else if(!is_numeric(trim($_POST["txtHeight"])))
{
echo "Age Weight Height ต้องเป็นตัวเลขเท่านั้นครับ";
echo "<br> Go to <a href='Register.php'>Register</a>";
exit();
}
$strSQL = "SELECT * FROM member WHERE user_name = '".$nothaiuser."' ";
$objQuery = mysql_query($strSQL);
$objResult = mysql_fetch_array($objQuery);
if($objResult)
{
echo "Username นี้มีอยู่ในระบบแล้ว กรุณากรอกใหม่!";
echo "<br> Go to <a href='Register.php'>Register</a>";
}
else
{
$strSQL = "INSERT INTO member (name,user_name,user_password,sex,age,weight,height) VALUES ('".$_POST["txtName"]."','".$nothaiuser."','".$nothaipassword."', '".$_POST["Sex"]."','".$_POST["txtAge"]."','".$_POST["txtWeight"]."','".$_POST["txtHeight"]."')";
$objQuery = mysql_query($strSQL) or die (mysql_error());
echo "Register Completed!<br>";
echo "<br> Go to <a href='index.php'>Form login</a>";
}
mysql_close();
?>
|
|
|
|
|
Date :
2015-12-22 03:25:55 |
By :
sicholkoong |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|