PHP MySQL (เกร็ดความรู้)
หน้าที่
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
-
หา MAC address ด้วย php (11,966)
lt php Getting MAC Address using PHP Md Nazmul Basher ob start Turn on output bufferingsystem 'ipconfig all' Execute external program to display output$mycom ob get contents Capture the output into a variableob clean Clean erase the output buffer$findme "Physical" -
เขียน php ย่อ URL กับ bit ly | Create Bit ly Short URLs Using PHP API Version 3 (23,939)
Bit ly is a great URL shortening service I love their reliability shortness of the URL and the information they provide about a given URL Recently Bit ly updated their API to version 3 so I thought I'd update my original Bit ly post Here's how you can create short URLs and expand short URLs usi -
คู่มือการเขียน php กับ Google calendar ฉบับจัดหนัก (10,008)
Google Calendar allows client applications to view and update calendar events in the form of Google Data API feeds Your client application can use the Google Calendar Data API to create new events edit or delete existing events and query for events that match particular criteria There are many po -
เขียน PHP application ร่วมกับ Google Calendar (8,308)
IntroductionFor a long time the only personal scheduling tool I used on a regular basis was the one that shipped with my PalmPilot Over the last couple of years though I've gradually shifted my loyalties to Google Calendar not only is it more Web aware but it also makes it easy to share news a -
SQL เลือกช่วงของวันที (9,539)
คำสั่งของ SQL สามารถเลือกช่วงของวันที่ ตั้งแต่ ว้นที่1 จนถึง วันที่ 2 ได้เลยครับ โดย วันที่1 และ วันที่2 จะต้องเป็นข้อความสตริงค์ในรูปวันที่ของ SQL เท่านั้นครับSELECT FROM tablename WHERE fdate gt '2550 01 01' AND fdate lt '2550 01 31' รูปแบบข้างบน อาจใช้ BETWEEN แทนได้ครับSELECT FROM tabl -
ฟังชั่นจัดรูปแบบให้กับเบอร์โทรศัพท์ ด้วย php substr (9,620)
lt function TelFormat $mobile { $minus sign " " nbsp กำหนดเครื่องหมาย nbsp $part1 substr $mobile 0 7 nbsp เริ่มจากซ้ายตัวที่ 1 0 ตัดทิ้งขวาทิ้ง 7 ตัวอักษร ได้ 085 nbsp $part2 substr $mobile 3 3 nbsp เริ่มจากซ้าย ตัวที่ 4 9 ตัดทิ้งขวาทิ้ง 3 ตัวอักษร -
ป้องกัน spam ด้วย captcha คำถาม ทางคณิตศาสตร์ อย่างง่าย (7,966)
lt phpsession start gt lt DOCTYPE html PUBLIC " W3C DTD XHTML 1 0 Transitional EN" "http www w3 org TR xhtml1 DTD xhtml1 transitional dtd" gt lt html xmlns "http www w3 org 1999 xhtml" gt lt head gt lt meta http equiv "Content Type" content "text html charset utf 8" gt lt titl -
เริ่มต้นทำ captcha A Simple PHP CAPTCHA Script (12,484)
This is one of the easiest CAPTCHA scripts you will ever use While it doesnt obscure the text it will serve its purpose well for many people who need a low level CAPTCHA solution This script requires little to no setup The only dependency is the PHP GD library Example CAPTCHA image It can be as -
ยืนยันรหัสก่อนส่งข้อมูล HTML contact form with CAPTCHA (13,918)
Using a contact form on your website is very useful as it helps your web site visitors to communicate with you in an easy and simple way But there are spammers and hackers who are looking for exploitable web forms It is essential to secure your form against all 'holes' that those hackers are sear -
การ return หลายค่าจาก function (9,826)
lt function testF $x {$y $x 2 $z $x 2 return array $y $z }list $values1 $values2 testF 54 echo " lt br gt " $values1 " " $values2 " lt br gt " gt