|
|
|
อยากจะถามเรื่อง code ที่ให้กรองก่อนที่จะเขียนลงฐานข้อมูลครับ |
|
|
|
|
|
|
|
Code (PHP)
function checkWordBad(&$word){
$strwordArr = array("/มึง/","/กู/","/สัด/") ; //คำหยาบที่จะตรวจสอบ
if(pre_match($strwordArr, $word)){
$word="<script>alert('มีคำไม่สุภาพ');history.back();</script>";
return true;
}
return false;
}
$word=$_POST['message'];
if( checkWordBad($word)){
echo $word; exit;
}
// do query on your database
?>
ตัวแปรชนิด link address เพื่อให้ค่าที่ส่งเข้าไปแก้ไข แล้วส่งค่ากลับมาได้
โดยการใส่ "&" หน้าตัวแปร
Code (PHP)
function test( &$var1, &$var2){
$var1='new data'; $var2='can edit';
}
|
ประวัติการแก้ไข 2014-07-01 09:07:32
|
|
|
|
Date :
2014-07-01 09:06:34 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากครับ
|
|
|
|
|
Date :
2014-07-01 11:07:44 |
By :
mrtee741 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|