การ insert ตัวอักษรพิเศษเข้าไปใน mysql

<?php
//insert commant
error_reporting( E_ALL );
include("connect_db.php");

$text="insert into table (data1) values ('insert into table (f1,f2,f3) values ('v1','v2','v3')'";

function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") 
{
  if (PHP_VERSION < 6) {
    $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
  }

  $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);

  switch ($theType) {
    case "text":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;    
    case "long":
    case "int":
      $theValue = ($theValue != "") ? intval($theValue) : "NULL";
      break;
    case "double":
      $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
      break;
    case "date":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;
    case "defined":
      $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
      break;
  }
  return $theValue;
}

  $insertSQL = sprintf("INSERT INTO command (`cid` ,`site`,`comm`) VALUES (%s, %s, %s)",
                       GetSQLValueString(NULL, "int"),
                       GetSQLValueString("1", "int"),
                       GetSQLValueString($text, "text"));

  $Result1 = mysql_query($insertSQL) or die(mysql_error());


if($Result1){echo "<br/>Ok";}else{echo "<br/>No";}
?>

php QrCode with Logo

<?php
/**
 * QR Code + Logo Generator
 *
 * http://labs.nticompassinc.com
 */
$data = isset($_GET['data']) ? $_GET['data'] : 'https://www.facebook.com/KiMZuhuM/';
$size = isset($_GET['size']) ? $_GET['size'] : '200x200';
$logo = isset($_GET['logo']) ? $_GET['logo'] : 'images/logo-4.png';
header('Content-type: image/png');
// Get QR Code image from Google Chart API
// http://code.google.com/apis/chart/infographics/docs/qr_codes.html
$QR = imagecreatefrompng('https://chart.googleapis.com/chart?cht=qr&chld=H|1&chs='.$size.'&chl='.urlencode($data));
if($logo !== FALSE){
$logo = imagecreatefromstring(file_get_contents($logo));
$QR_width = imagesx($QR);
$QR_height = imagesy($QR);

$logo_width = imagesx($logo);
$logo_height = imagesy($logo);

// Scale logo to fit in the QR Code
$logo_qr_width = $QR_width/3;
$scale = $logo_width/$logo_qr_width;
$logo_qr_height = $logo_height/$scale;

imagecopyresampled($QR, $logo, $QR_width/3, $QR_height/3, 0, 0, $logo_qr_width, $logo_qr_height, $logo_width, $logo_height);
}
imagepng($QR);
imagedestroy($QR);
?>

รัน con tap ไฟล์ PHP บน windows

You will need a shellscript to run chronically, using Windows Task Scheduler. Also you will need a batch script (script.bat) to call the php.exe and run your php script (here called as my_process.php)
shellscript.vbs
Set WinScriptHost = CreateObject("WScript.Shell")
WinScriptHost.Run Chr(34) & "C:\path\to\script\script.bat" & Chr(34), 0
Set WinScriptHost = Nothing
script.bat
"C:\wamp\bin\php\php5.4.12\php.exe" -f "C:\wamp\www\website\my_process.php"
Now, we are ready to set the Windows Task Scheduler to run shellscript.vbs at the required time interval:
  1. Open Task Scheduler from windows Start menu
  2. Go to Action menu and hit Create Task...
  3. in General tab, fill the Name and Description fields as you want
  4. in Triggers tab, hit New button.
  5. from Begin the Task dropdown, select On a schedule and choose Daily
  6. from Advanced settings section, select Repeat task every as you want and set for a durationon Indefinitely.
  7. on Actions tab, from Action dropdown, select Start a program.
  8. on the Program\script box, enter path to shellscript.vbs like C:\path\to\shellscript.vbs.
  9. leave Add argumentts (optional) section empty.
  10. in Start in (optional) box, enter parent directory of shellscript.vbs like C:\path\to\.
  11. Hit upvote on this tutorial :) Have fun.
ขอบคุณ ที่มา :stackoverflow.com

การกำหนด ขนาด พื้นหลัง Background Css

การทำหนด background size จะประกอบด้วย code ดังต่อไปนี้ครับ

<style>
.bg{
background-image:url(card_img/card_bg_all.jpg);
background-repeat : no-repeat;
background-position: top center;
background-size:250px;
}
</style>

<div width="250" class="bg"></div>

ขนาด ความสูง แล้วแต่การออกแบบของที่ละคนครับ

รหัสจังหวัด, province sql data, MySql Insert

สำหรับ ใคร ที่อยากได้ ข้อมูลรหัส จังหวัด ของประเทศไทยครับผม
สร้างชื่อตราราง
province_code
และฟิว
code
ไว้รอได้เลยครับ...
INSERT INTO `province_code` (`code`, `name`) 
VALUES 
('001','กรุงเทพมหานคร'),
('308','หนองบัวลาภู'),
('606','เพชรบูรณ์'),
('100','ชัยนาท'),
('309','บึงกาฬ'),
('607','นครสวรรค์'),
('101','สิงห์บุรี'),
('400','หนองคาย'),
('608','อุทัยธานี'),
('102','ลพบุรี'),
('401','เลย'),
('700','สุพรรณบุรี'),
('103','อ่างทอง'),
('402','อุดรธานี'),
('701','กาญจนบุรี'),
('104','สระบุรี'),
('403','นครพนม'),
('702','นครปฐม'),
('105','พระนครศรีอยุธยา'),
('404','สกลนคร'),
('703','ราชบุรี'),
('106','ปทุมธานี'),
('405','ขอนแก่น'),
('704','สมุทรสาคร'),
('107','นนทบุรี'),
('406','กาฬสินธุ์'),
('705','สมุทรสงคราม'),
('108','สมุทรปราการ'),
('407', 'มหาสารคาม'),
('706', 'เพชรบุรี'),
('200','นครนายก'),
('408', 'ร้อยเอ็ด'),
('707', 'ประจวบคีรีขันธ์'),
('201', 'ปราจีนบุรี'),
('409', 'มุกดาหาร'),
('800', 'ชุมพร'),
('202', 'ฉะเชิงเทรา'),
('500', 'เชียงราย'),
('801', 'ระนอง'),
('203', 'ชลบุรี'),
('501', 'แม่ฮ่องสอน'),
('802', 'สุราษฎร์ธานี'),
('204', 'ระยอง'),
('502', 'เชียงใหม่'),
('803', 'พังงา'),
('205', 'จันทบุรี'),
('503', 'พะเยา'),
('804', 'นครศรีธรรมราช'),
('206', 'ตราด'),
('504', 'น่าน'),
('805', 'กระบี่'),
('207', 'สระแก้ว'),
('505', 'ลาพูน'),
('806', 'ภูเก็ต'),
('300', 'ชัยภูมิ'),
('506', 'ลาปาง'),
('900', 'พัทลุง'),
('301', 'ยโสธร'),
('507', 'แพร่'),
('901', 'ตรัง'),
('302', 'อุบลราชธานี'),
('600', 'อุตรดิตถ์'),
('902', 'สงขลา'),
('303', 'ศรีสะเกษ'),
('601', 'สุโขทัย'),
('903', 'สตูล'),
('304', 'บุรีรัมย์'),
('602', 'ตาก'),
('904', 'ปัตตานี'),
('305', 'นครราชสีมา'),
('603', 'พิษณุโลก'),
('905', 'ยะลา'),
('306', 'สุรินทร์'),
('604',' กาแพงเพชร'),
('906','นราธิวาส'),
('307', 'อานาจเจริญ'),
('605',' พิจิตร'),
('907','เบตง');

ฟังก์ชัน curl (curl_setopt) get json เชื่อมต่อกับ API กรมขนส่ง GPS Tracking

สร้าง function Get json

function get_json($url){
$login = 'username';
$password = 'password';


$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
curl_setopt($ch, CURLOPT_USERPWD, "$login:$password");
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
$result = curl_exec($ch);

return $result;

curl_close($ch);
}

วิธีนำไปใช้

$result = get_json($url);//เรียกฟังก์ชัน get_json // พร้อมส่ง url ที่จะเชื่อมต่อ
$json = json_decode($result, true); // de code json ก่อน

foreach($json['results'] as $result){// เรียกข้อมูล results ออกมา
   echo  $result['vender_id'];// ตัวแปร ตามคู่มือของกรมขนส่งเลยครับ
}