โมดูล DS18B20 วัดอุณหภูมิแบบกันน้ำ รับไฟเลี้ยง 3-5.5V วัดอุณหภูมิได้ในช่วง -10 ถึง 85 องศา พร้อมบอร์ดสำหรับต่อกับ Arduino / ESP8266 / ESP32 และบอร์ด MCU รุ่นอื่น ๆ สายต่อกับเซนเซอร์ DS18B20 แบบ terminal ต่อทดลองได้ง่าย
DS18B20-Sensor-100-DS18B20-Arduino.jpg_Q90.jpg_
การต่อสายทดลอง DS18B20 กับ Arduino
1. ต่อวงจรกับ Arduino ดังนี้
VCC – 5V
GND – GND
DAT – 2

Read More

ส่งค่าข้อมูลในรูปแบบ GET

อย่างที่บอกแล้วครับว่าการส่งข้อมูลแบบ GET จะส่งค่าผ่าน URL โดยตรง โดยที่จะระบุชื่อตัวแปรแยกเป็นตัว ๆ คั่นด้วยเครื่องหมาย & ตามรูปแบบข้างล่างนี้

http://<ชื่อ Domain>/<ชื่อ Folder>/<ชื่อไฟล์ที่จะเอาค่าไปประมวลผล.php>?<ชื่อตัวแปรที่ 1=ค่า>&<ชื่อตัวแปรที่ 2=ค่า>

Read More

การรับข้อมูลที่ส่งมาจากฟอร์ม Form นั้น มีวิธีการส่งอยู่ 2 แบบนั่นคือ แบบ GET กับแบบ POST แต่เป็นวิธีการส่งข้อมูลให้กับ server ทั้งคู่ดังนั้นเมื่อเริ่มศึกษาการเขียนเว็บไซต์คนส่วนใหญ่จะสับสนถึงความแตกต่างในการใช้งานระหว่าง GET และ POST ว่าควรใช้งานในลักษณะใดซึ่งสามารถสรุปได้สั้นๆ ดังนี้

  • GET ใช้สำหรับรับการดึงข้อมูลจากฐานข้อมูลของเว็บไซต์มาแสดงผล
  • POST ใช้สำหรับการเพิ่มหรือเปลี่ยนแปลงข้อมูลต่างๆที่อยู่ในฐานข้อมูลของเว็บไซต์

นอกจากนี้ยังมีรายละเอียดปลีกย่อยต่างๆเพิ่มเติมที่จะกล่าวถึงต่อไปดังนี้

Read More

This article explains how to install PHP 8 and Apache 2.4 on Windows 10 (64-bit).

Linux and macOS users often have Apache and PHP pre-installed or available via package managers. Windows 10 requires a little more effort. The steps below may work with other editions of Windows, PHP, and Apache, but check the documentation of each dependency for specific instructions.

Read More

A handy feature often used on Windows computers is creating shortcuts. Shortcuts are handy ways to link to items such as folders, files, apps, and more. To better understand shortcuts, look at our Understanding Shortcuts article.

When you create a shortcut Windows creates an icon that looks similar to the item your shortcut links to and will have two additional identifiers—a curved arrow icon in the lower-left corner of the icon and the text “- Shortcut” added at the end of the shortcut’s name. If you find that you typically rename your shortcut by removing the “- Shortcut” text or you would prefer to change the appended text, you can do so using the Registry Editor within Windows 10. In two other tips, we have covered how to modify the default name for new folders and how to change the name of copied folders. If you followed those two articles much of what you do in this tip will be familiar.

Read More

How to Check MySQL Database and Table Size

There are three ways to check MySQL database and table sizes:

1. Using phpMyAdmin.

2. Using the SELECT statement.

3. Using MySQL workbench.

All methods provide ways to check the size for:

  • A single database.
  • All databases.
  • Table size for a single database.
  • Table size for all databases.

Choose a method that best fits your configuration and follow the step-by-step instructions below.

Read More

วันนี้จะมาเขียนข้อมูลเกี่ยวกับ sql ที่ได้เขียนมา โจทย์ก็ตามหัวข้อเลยครับ คือให้ดึงข้อมูลจากตาราง 7 วันล่าสุด และถ้าวันไหนไม่มีข้อมูลให้โชว์ Value เป็น 0

คือปกติเวลาคิวรี่ข้อมูล มันจะแสดงข้อมูลเฉพาะที่มีขึ้นมาแสดงใช่ไหมครับ เช่น สมมุติข้อมูลมี ดังภาพด้านล่าง

ข้อมูลในตาราง challenge_table

เวลาเราคิวรี่ข้อมูล 7 วันล่าสุด ก็จะใช้โค้ดประมาณนี้

SELECT * FROM challenge_table WHERE challenge_date BETWEEN DATE_SUB(NOW(), INTERVAL 7 DAY) AND NOW()

Read More