|
|
|
สอบถามปัญหาเรื่อง Tag ของภาษา html มันไม่สามารถ บันทึกลง ฐานข้อมูลได้อะครับ ทำไงดี |
|
|
|
|
|
|
|
ผมลองไล่เปิดอ่านบทความเก่า ๆดู ได้ Function นี้มา ลองเอาไปใช้ก็ OK ครับ ใช้ได้เลยทีเดียว ขอบคัณครับ
Code (PHP)
<?
function sqlEscape($sql) {
$fix_str=stripslashes($sql);
$fix_str=str_replace("'","''",$sql);
$fix_str=str_replace("\0","[NULL]",$fix_str);
return $fix_str;
}
?>
|
|
|
|
|
Date :
2012-02-23 10:04:04 |
By :
bluesix |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมใช้แค่ตัวนี้ตัวเดียวครับ
Code (PHP)
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 :
2012-02-24 06:51:20 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|