Comments on: jQuery + Validate Plugin เช็คฟอร์มเรื่องง่าย ใครว่ายาก https://www.unzeen.com/article/603/ :// Fri, 26 Jul 2019 08:00:09 +0000 hourly 1 By: uuppic https://www.unzeen.com/article/603/comment-page-1/#comment-727 Sat, 28 Jan 2012 20:21:00 +0000 http://www.unzeen.com/?p=603#comment-727 ขอบคุณครับ หาอยู่พอดี

]]>
By: mthai https://www.unzeen.com/article/603/comment-page-1/#comment-712 Tue, 03 Jan 2012 08:43:11 +0000 http://www.unzeen.com/?p=603#comment-712 ขอบคุณครับ

]]>
By: f^soy' https://www.unzeen.com/article/603/comment-page-1/#comment-557 Sun, 12 Jun 2011 18:17:30 +0000 http://www.unzeen.com/?p=603#comment-557 ช่วยย่นเวลาในการเขียนได้เยอะเลยค่ะ ขอบคุณค่ะ

]]>
By: ompiang https://www.unzeen.com/article/603/comment-page-1/#comment-481 Sun, 29 Aug 2010 04:05:39 +0000 http://www.unzeen.com/?p=603#comment-481 ขอบคุณครับ เยี่ยมมากเลย ต้องขอบคุณที่แบ่งปันสิ่งดี ๆ ครับ

]]>
By: LookHin https://www.unzeen.com/article/603/comment-page-1/#comment-409 Fri, 02 Oct 2009 11:12:54 +0000 http://www.unzeen.com/?p=603#comment-409 ข้อมูลที่เราส่ง replace เป็น \’ แล้วเนีย เวลาเก็บลง db มันก็จะเหลือแค่ ‘ อย่างเดียวนะครับ
ฉะนั้นเวลา select ออกมาแสดงผล ก็ไม่ต้อง replace กลับแต่อย่างใด

เมือก่อนนี้ php กำหนดให้ข้อมูลที่ POST หรือ GET ถูกใส่ \’ ให้โดยอัตโนมัต
แต่มา version หลังๆนี้ ที่ข้อมูลที่ POST หรือ GET เข้ามาไม่ถูกใส่ \’ ให้นะครับ

ฉะนั้นก็ดูที่ server ที่ใช้งานด้วยนะครับว่าข้อมูลของเรามันถูกใส่ \’ มาหรือยัง
ถ้าใส่มาแล้วเราก็ไม่ต้องไป replace ‘ อีกนะครับ

ถ้ายังไงลองเอา function ต่อไปนี้ไปลองใช้งานดูนะครับ น่าจะช่วยได้

// Replace ' to \'
if(!get_magic_quotes_gpc()){
	$_GET = array_map('setMagicQuotesGPC', $_GET);
	$_POST = array_map('setMagicQuotesGPC', $_POST);
	$_COOKIE = array_map('setMagicQuotesGPC', $_COOKIE);
}

function setMagicQuotesGPC($element){
	if(is_array($element)){
		return array_map('setMagicQuotesGPC', $element);
	}else{
		return addslashes($element);
	}
}
]]>
By: thanaroj https://www.unzeen.com/article/603/comment-page-1/#comment-408 Fri, 02 Oct 2009 10:54:30 +0000 http://www.unzeen.com/?p=603#comment-408 ออ คับ พอเพิ่มเสร็จ ก็จะได้ ขอ้มูล เป็น \’ ใน data base แต่ตอนเอาไปใช้ค่อย เอา string ต้วนี้ ไป replase ต่อหรือป่าว คับ ไม่รู้เข้าใจถูกหรือป่าว

]]>
By: LookHin https://www.unzeen.com/article/603/comment-page-1/#comment-407 Fri, 02 Oct 2009 10:17:10 +0000 http://www.unzeen.com/?p=603#comment-407 สั่ง replace ‘ ให้เป็น \’ ก่อนเลยครับ

ใน php ใช้ function addslashes ได้ครับ

]]>
By: thanaroj https://www.unzeen.com/article/603/comment-page-1/#comment-406 Fri, 02 Oct 2009 10:15:46 +0000 http://www.unzeen.com/?p=603#comment-406 อย่างเช่น ‘ i don’t ?

]]>
By: thanaroj https://www.unzeen.com/article/603/comment-page-1/#comment-405 Fri, 02 Oct 2009 10:13:09 +0000 http://www.unzeen.com/?p=603#comment-405 ‘ผมเจอ ปัญหาเรื่อง การ execute ข้อมูลที่มี string ‘ นำ้หน้า แล้ว execute ไม่ได้ จะมีวิธีป้องการหรือ validate ยังคับ

]]>
By: thanaroj https://www.unzeen.com/article/603/comment-page-1/#comment-391 Fri, 25 Sep 2009 08:29:49 +0000 http://www.unzeen.com/?p=603#comment-391 ขอบคุณมากคับ

]]>