ARTICLES > PHP

[PHP] ดึงอัตราแลกเปลี่ยนจาก API ธนาคารชาติ (2022)

[PHP] ดึงอัตราแลกเปลี่ยนจาก API ธนาคารชาติ (2022)

2019-02-25 15:48:24

  จากที่ก่อนหน้านี้ (ปลายปี2018) ทางธนาคารแห่งประเทศไทย (ธปท) ได้พัฒนา API Exchange Rate จากเวอร์ชั่นเก่า มาเป็นตัวใหม่ ส่งผลให้ Application ของเว็บไซ์ที่เคยเขียนไว้ ไม่สามารถเชื่อมต่อ API ตัวเดิมได้ ดังนั้นเราจะมาลองเชื่อมต่อ API ...
READ MORE

[PHP] Form POST many varaible more 1000 fields

[PHP] Form POST many varaible more 1000 fields

2018-07-06 15:32:38

Set config php.ini max_input_vars = 1000 *Default at 1000 fields   If you want to define many IN condition with sql command  (MySQL) If you want to POST these values (very many fields) to the sql statement via IN ...
READ MORE

[PHP] PHPExcelExport open_basedir restriction

[PHP] PHPExcelExport open_basedir restriction

2018-05-18 00:57:15

PHP Export excel alert: Warning: tempnam(): open_basedir restriction in effect. File() is not within the allowed path(s): __ Warning: fopen(): Filename cannot be empty in __ Insert this code on export page: error_reporting(E_ERROR ...
READ MORE

PHP split multiple condition

PHP split multiple condition

2017-07-26 16:33:04

Split word by space or plus character to array. $arr = preg_split("/[s,+]/", trim($_GET['text_search']));   And call function markWord for replace hightlight styles. function markWord($arr,$str) { ...
READ MORE

PHP insert single quote into database

PHP insert single quote into database

2017-01-11 17:57:50

  PHP ฟังก์ชั่นสำหรับจัดการกับ single quote (') ก่อนที่จะ insert ลงฐานข้อมูล function string_sanitize($s) {     $result = str_replace(" ' ", " ' ' ", $s);     return ...
READ MORE

PHP Pagination - แบ่งหน้าด้วย php

PHP Pagination - แบ่งหน้าด้วย php

2016-09-29 22:58:43

เป็น PHP ฟังก์ชั่น ที่ใช้สำหรับแบ่งหน้า ในกรณีดึงข้อมูลมาแสดงเป็น Item list พร้อมกับ css จัดรูปแบบเพื่อความสะดวกใช้งาน   pagination.php <?php   function displayPaging( $total, $limit, $pagenumber, $baseurl, ...
READ MORE

PHP upload multiple files

PHP upload multiple files

2016-09-26 13:10:36

PHP โค้ดสำหรับฟอร์มอับโหลดไฟล์ หลายไฟล์ โดยมีการตรวจสอบนามสกุลของไฟล์ และจำกัดขนาด size พร้อมกับเช็ค error ขณะอับโหลด HTML <form action="file_upload.php" method="post" enctype="multipart/form-data"> <input ...
READ MORE

PHP random arrays

PHP random arrays

2016-09-09 17:00:27

PHP Script for random one of array key <?PHP $text = array(); $text[] = 'Content 1'; $text[] = 'Content 2'; $text[] = 'Content 3'; echo $text[ array_rand($text,1) ]; ?> If you want ...
READ MORE

PHP Redirect back to previous page after login

PHP Redirect back to previous page after login

2016-09-09 11:15:25

  The PHP script including condition terms before loaded content. If the condition is false The script will redirecting back to the login page with location parameters.   Main page (index.php) <?php   if ...
READ MORE

[PHP] ดึงภาพจาก Pinterest มาแสดงบนเว็บไซต์

[PHP] ดึงภาพจาก Pinterest มาแสดงบนเว็บไซต์

2016-08-10 17:01:45

การดึงภาพและข้อมูลอื่นๆที่เกี่ยวข้องจาก board ในเว็บไซต์ Pinterest นั่น เราสามารถทำผ่าน API ที่เขาจัดเตรียมไว้ให้ ซึ่งวิธีการนั้นง่ายมากๆ ครับ แต่ก่อนอื่นคุณเป็นเป็นสมาชิกของ pinterest ก่อนนะ  แล้วเข้าไปที่   1. เข้าไปที่หน้า  https://developers.pinterest.com/   ...
READ MORE

ดึงภาพจาก Instagram มาแสดงบนเว็บไซต์ด้วย PHP

ดึงภาพจาก Instagram มาแสดงบนเว็บไซต์ด้วย PHP

2016-08-09 19:10:34

1. ลำดับแรกคุณต้องมี Account ของ Instagram ก่อนนะครับ  จากนั้นเข้าไปที่หน้านี้เลย https://www.instagram.com/developer 2. จากนั้นเลือก Manage Clients  และกดปุ่ม Register a new client   3. กรอกรายละเอียดที่จำเป็น ...
READ MORE

PHP Check ตัวอักษรภาษาไทย

PHP Check ตัวอักษรภาษาไทย

2015-09-20 12:37:42

PHP script สำหรับตรวจสอบข้อความ เช็คตัวอักษร ว่าเป็นอักษรไทย และวรรณยุกต์ หรือไม่ <?PHP   if(!ereg('^[ก-์ ะ-ู เ-แ]+$', $text)) {              // Something ...
READ MORE

PHP convert month,year to Thai date

PHP convert month,year to Thai date

2015-01-24 14:20:22

  PHP ใช้แปลง date เป็นเดือนไทย พ.ศ. $month_arr=array(     "1"=>"มกราคม",     "2"=>"กุมภาพันธ์",     "3"=>"มีนาคม",   ...
READ MORE

PHP ตัด HTML tag ออกจาก Text ตัวอักษร

PHP ตัด HTML tag ออกจาก Text ตัวอักษร

2014-09-23 15:01:08

PHP strip_tags เป็นฟังก์ชั่นตัด html tag ให้เหลือไว้เพียง Content text ที่อยู่ภายใน tag นั้น <?php $text = '<p>Test paragraph + <span style="color:red">Read more</span></p> <a href="#"><b>link</b></a>'; echo ...
READ MORE