24 มิถุนายน 2559

Force clear cache on page เคลียร์แคชหน้าเว็บเพจ

Using HTML Meta Tags

The most basic approach to the prevention of page caching is one that utilizes HTML meta tags:


Using HTTP Headers

A better approach is to use the HTTP protocol itself, with the help of PHP’s header function, to produce the equivalent of the two HTML meta tags above:

header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
header('Pragma: no-cache');
?>

We can go one step further than this, using the Cache-Control header that’s supported by HTTP 1.1-capable browsers:

header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
header('Cache-Control: no-store, no-cache, must-revalidate');
header('Cache-Control: post-check=0, pre-check=0', FALSE);
header('Pragma: no-cache');
?>

Setting a Page Expiry Header

The header that’s easiest to implement is the Expires header–we use it to set a date on which the page will expire, and until that time, web browsers are allowed to use a cached version of the page. Here’s an example of this header at work:

expires.php (excerpt)

function setExpires($expires) {
header(
‘Expires: ‘.gmdate(‘D, d M Y H:i:s’, time()+$expires).’GMT’);
}
setExpires(10);
echo ( ‘This page will self destruct in 10 seconds
’ );
echo ( ‘The GMT is now ‘.gmdate(‘H:i:s’).'
’ );
echo ( ‘View Again
’ );
?>

12 พฤษภาคม 2559

วิธีลบช่องว่างแต่ละคอลัมน์ ในฐานข้อมูล - How to remove all whitespaces from the entire column MYSQL

down voteaccepted
for replace all spaces : ลบช่องว่างทั้งหมดในคอลัมน์
UPDATE `table` SET `col_name` = REPLACE(`col_name`, ' ', '')
for remove all tabs characters : ลบ tab ในคอลัมน์
UPDATE `table` SET `col_name` = REPLACE(`col_name`, '\t', '' )
for remove all new line characters : ลบบรรทัด
UPDATE `table` SET `col_name` = REPLACE(`col_name`, '\n', '')
for remove first and last space(s) of column : ลบช่องว่างข้างหน้าและข้างหลังข้อมูล
UPDATE `table` SET `col_name` = TRIM(`col_name`)

21 มีนาคม 2559

Remote Desktop แบบไม่ต้องถามรหัสผ่าน

Remote Desktop แบบไม่ต้องถามรหัสผ่าน

1. เริ่มกันเลยคลิ๊กขวาที่ my computer เลือก properties > remote แล้วทำการเครื่องหมายถูกที่ allow users to remotely to this computer Full computer name:

2. แล้วทำการเพิ่มผู้ที่จะ log in เข้ามา คลิ๊กที่ select Remote Users ..แล้วคลิ๊กที่ add

 3. ก็ให้ทำการเพื่มชื่อโดยคลิ๊ดเลือก advanced




4. เลือก find เพื่อทำการค้นหาผู้ใช้งาน

5. เมื่อเลือกผู้ใช้งานแล้วกด ok

6. ต่อมาเข้าไปที่ strat > run แล้วพิมพ์ gpedit.msc

7. ทำการเลือก ดังภาพ

8. คลิ๊กขวาเลือก properties แล้ว disable แล้วกด ok

 Credit : http://www.oknation.net/blog/sniperthai/2009/10/27/entry-3