Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,037

HOME > PHP > PHP Forum > ขอ code การส่ง sms ด้วยครับ อยากได้ตัวอย่าง code การส่ง sms ส่ง sms แบบ วนลูป อ่านค่าจากตารางนะครับ



 

ขอ code การส่ง sms ด้วยครับ อยากได้ตัวอย่าง code การส่ง sms ส่ง sms แบบ วนลูป อ่านค่าจากตารางนะครับ

 



Topic : 028856



โพสกระทู้ ( 5 )
บทความ ( 0 )



สถานะออฟไลน์




อยากได้ตัวอย่าง code การส่ง sms
ส่ง sms แบบ วนลูป อ่านค่าจากตารางนะครับ
ขอขอบคุณล่วงหน้านะครับ
วิฑูรย์



Tag : - - - -







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2009-07-03 02:09:17 By : vitool View : 3332 Reply : 4
 

 

No. 1



โพสกระทู้ ( 2,794 )
บทความ ( 0 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์


คนเดิมกระทู้เก่า
https://www.thaicreate.com/php/forum/028055.html






Date : 2009-07-03 07:50:36 By : panyapol
 


 

No. 2



โพสกระทู้ ( 2,794 )
บทความ ( 0 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์


เพิ่มเติมครับ http://www.select2web.com/php/send-sms-free.html
Date : 2009-07-03 09:06:02 By : panyapol
 

 

No. 3



โพสกระทู้ ( 1 )
บทความ ( 0 )



สถานะออฟไลน์


code php ที่ใช้ส่ง SMS ครับ
//##########################
//
// Program: SMS Sender
// By: Suparat Leelathum
// web site:http://www.expert2you.com/
// last modified: 16 Mar 2003
//
//#########################

function tis2utf8($tis) {
for( $i=0 ; $i< strlen($tis) ; $i++ ){
$s = substr($tis, $i, 1);
$val = ord($s);
if( $val < 0x80 ){
$utf8 .= $s;
} elseif ( ( 0xA1 <= $val and $val <= 0xDA ) or ( 0xDF <= $val and $val <= 0xFB ) ){
$unicode = 0x0E00 + $val - 0xA0;
$utf8 .= chr( 0xE0 | ($unicode >> 12) );
$utf8 .= chr( 0x80 | (($unicode >> 6) & 0x3F) );
$utf8 .= chr( 0x80 | ($unicode & 0x3F) );
}
}
return $utf8;
}


//****************************************************************\
//Config:

$username="xxxxxx"; //icq username
$passw="xxxxxxx"; //icq password

$country = "66"; //country code such as Thailand is 66
$area_code="x"; //area code such as 01, please put 1
$phonenumber="xxxxxxx"; //phonenumber
$message = tis2utf8("ทดสอบการส่งภาษาไทย"); //sms message

//****************************************************************
// Do Login

$dat = "karma_success_url=".urlencode("http://web.icq.com/sms/inbox/?")."&karma_fail_url=".urlencode("/login/login_page?karma_product_css=icq2go&karma_success_url=http%3A%2F%2Fweb%2Eicq%2Ecom%2Fsms%2Finbox%2F%3F&karma_forget=&karma_service=")."&karma_service="."&karma_user_login=".urlencode($username)."&karma_user_passwd=".urlencode($passw)."&karma_remember=1"."&submit=".urlencode(" Log in ");

$contentlength= strlen($dat);
$htmlreply="";
$hdr = "POSThttp://web.icq.com/newlogin/1,,,00.htmlHTTP/1.0\r\n";
$hdr .= "Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/vnd.ms-powerpoint, application/vnd.ms-excel, application/msword, */*\r\n";
$hdr .= "Referer: http://web.icq.com/login/login_page/?karma_product_css=icq2go&karma_forget=&karma_service=&karma_success_url=http%3A%2F%2Fweb%2Eicq%2Ecom%2Fsms%2Finbox%2F%3F\r\n";
$hdr .= "Accept-Language: th\r\n";
$hdr .= "Content-Type: application/x-www-form-urlencoded\r\n";
$hdr .= "Accept-Encoding: gzip, deflate\r\n";
$hdr .= "User-Agent: Mozilla/4.0 (compatible; MSIE 5.0; Windows 98; DigExt)\r\n";
$hdr .= "Host: web.icq.com\r\n";
$hdr .= "Content-Length: ".$contentlength."\r\n";
$hdr .= "Proxy-Connection: Keep-Alive\r\n";
$hdr .= "Pragma: no-cache\r\n";
$hdr .= "\r\n";
$post = $hdr.$dat."\r\n";
$remote = fsockopen("web.icq.com", 80, &$errno, &$errstr, 30);
fputs($remote, $post);
while (!feof($remote)) {
$htmlreply.=fgets($remote,120);
}
fclose($remote);

// Uncomment for debug1 ,check return after login:
echo "

HTML Reply
".$htmlreply ;

//****************************************************************
// Get cookies from ICQ
$temp_cookie = explode("karma2_data=",$htmlreply);
//เชคค่า cookie echo "Bobby $l == $temp_cookie[1]";
$temp_cookiea = explode(";",$temp_cookie[1]);
//เป็นคำสั่งตัดข้อความตัดท่อนแรกแบ่งครึ่ง ตัดอีกทีตัดหลังจาก cookie ออก เลยเหลือแต่ cookie ครับผม
//เชคค่า cookie echo "$temp_cookiea[0]";
//$splited = split("\n",nl2br($htmlreply));
//$cookies = $splited[12];
$cookies = $temp_cookiea[0];
$cookiesplit = split(";",$cookies);
$s_data = $cookiesplit[0];
$cookies = str_replace("Set-Cookie: karma2_data=","",$s_data);
// Uncomment for debug 2, check cookie:
echo "

Cookie
".$cookies;

//****************************************************************
// Send SMS Message
$contentprefix = "+".$country;
$charcount = (160-strlen($message));

$dat = "";
$dat .= "-----------------------------7d12442eab5\r\n";
$dat .= "Content-Disposition: form-data; name=\"country\"\r\n";
$dat .= "\r\n";
$dat .= $country."\r\n";
$dat .= "-----------------------------7d12442eab5\r\n";
$dat .= "Content-Disposition: form-data; name=\"prefix\"\r\n";
$dat .= "\r\n";
$dat .= $contentprefix."\r\n";
$dat .= "-----------------------------7d12442eab5\r\n";
$dat .= "Content-Disposition: form-data; name=\"carrier\"\r\n";
$dat .= "\r\n";
$dat .= $area_code."\r\n";
$dat .= "-----------------------------7d12442eab5\r\n";
$dat .= "Content-Disposition: form-data; name=\"tophone\"\r\n";
$dat .= "\r\n";
$dat .= $phonenumber."\r\n";
$dat .= "-----------------------------7d12442eab5\r\n";
$dat .= "Content-Disposition: form-data; name=\"uSend\"\r\n";
$dat .= "\r\n";
$dat .= "1\r\n";
$dat .= "-----------------------------7d12442eab5\r\n";
$dat .= "Content-Disposition: form-data; name=\"charcount\"\r\n";
$dat .= "\r\n";
$dat .= $charcount."\r\n";
$dat .= "-----------------------------7d12442eab5\r\n";
$dat .= "Content-Disposition: form-data; name=\"msg\"\r\n";
$dat .= "\r\n";
$dat .= $message."\r\n";
$dat .= "-----------------------------7d12442eab5--\r\n";
$contentlength= strlen($dat);
$htmlreply="";
$hdr = "POSThttp://web.icq.com/sms/send_msg_tx/1,,,00.htmlHTTP/1.0 \r\n";
$hdr .= "Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/vnd.ms-powerpoint, application/vnd.ms-excel, application/msword, */* \r\n";
$hdr .= "Referer: ".urlencode("http://web.icq.com/sms/inbox/?")." \r\n";
$hdr .= "Accept-Language: th \r\n";
$hdr .= "Content-Type: multipart/form-data; charset=UTF-8; boundary=---------------------------7d12442eab5\r\n";
$hdr .= "Accept-Encoding: gzip, deflate \r\n";
$hdr .= "User-Agent: Mozilla/4.0 (compatible; MSIE 5.0; Windows 98; DigExt) \r\n";
$hdr .= "Host: web.icq.com \r\n";
$hdr .= "Content-Length: ".$contentlength." \r\n";
$hdr .= "Proxy-Connection: Keep-Alive \r\n";
$hdr .= "Pragma: no-cache \r\n";
$hdr .= "Cookie: karma2_uin=".$username."; karma2_data=".$cookies."; karma2_sdata=".urlencode("CTR(64-1):cw==")."; karma2_rem=".urlencode("CTR(64-1):dA==")." \r\n\r\n";
$post = $hdr.$dat;
$remote = fsockopen("web.icq.com", 80, &$errno, &$errstr, 30);
fputs($remote, $post);
while (!feof($remote)) {
$htmlreply.=fgets($remote,120);
}
fclose($remote);
//Uncomment for debug 3, check the status after send the message to the mobile phone:
echo "

After Send
".$htmlreply;

//****************************************************************
if (strpos($htmlreply,"sms//error")==0)
{
Echo "

SMS Send!";
}
else {
echo "

Error sending SMS!";
}
?>
Date : 2009-09-08 11:24:09 By : sulove001
 


 

No. 4

Guest


ถ้าขอ code โปรแกรม Matlab / GUI จะได้มั๊ยคะ
Date : 2011-02-01 16:53:07 By : NU_C
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : ขอ code การส่ง sms ด้วยครับ อยากได้ตัวอย่าง code การส่ง sms ส่ง sms แบบ วนลูป อ่านค่าจากตารางนะครับ
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 04
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่