|
|
|
การตัด tag html ออก เก็บแค่ตัวอักษร กรณีใช้ ckediter ในการเก็บข้อมูลจาก textarea |
|
|
|
|
|
|
|
tag html จะทำให้คำสั่ง sql error แล้วเราจะแก้ไขอย่างไรคะ
เช่น <font color='#000000'>
ซึ่ง ' " จะทำให้คำสั่ง sql error
|
|
|
|
|
Date :
2013-04-01 11:40:12 |
By :
tai_kook |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ปกติผมใช้แค่ mysql_real_escape_string() น่ะครับ
Code (PHP)
<?php
// Connect
$link = mysql_connect('mysql_host', 'mysql_user', 'mysql_password')
OR die(mysql_error());
// Query
$query = sprintf("SELECT * FROM users WHERE user='%s' AND password='%s'",
mysql_real_escape_string($user),
mysql_real_escape_string($password));
?>
|
|
|
|
|
Date :
2013-04-01 12:07:37 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2013-04-01 13:11:55 |
By :
cookiephp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|