|
|
|
การเขียนโค๊ดส่งsmsเข้ามือถือทำอย่างไรครับของ PHP นะคับ |
|
|
|
|
|
|
|
ได้แล้วบอกด้วยนะ อยากได้อยู่เหมือนกาน ^ ^
|
|
|
|
|
Date :
2 ม.ค. 2550 08:37:57 |
By :
อ่านะ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ต้องการอยู่เหมือนกันค่ะ
|
|
|
|
|
Date :
2010-04-01 11:21:41 |
By :
arpassara |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มันจะมี sms gate way อยู่อ่ะครับ คุณต้องไปหาเช่ามาก่อนนะครับ เหมือนเช่าโฮสต์ทำเว็บน่ะครับหลังจากนั้นก็มาเขียนโค้ดกัน
Code
<html>
<body>
<h1>My SMS form</h1>
<form method=post action='sendsms.php'>
<table border=0>
<tr>
<td>Recipient</td>
<td><input type='text' name='recipient'></td>
</tr>
<tr>
<td>Message</td>
<td><textarea rows=4 cols=40 name='message'></textarea></td>
</tr>
<tr>
<td> </td>
<td><input type=submit name=submit value=Send></td>
</tr>
</table>
</form>
</body>
</html>
Code (PHP)
<?php
########################################################
# Login information for the SMS Gateway
########################################################
$ozeki_user = "admin";
$ozeki_password = "abc123";
$ozeki_url = "http://127.0.0.1:9501/api?";
########################################################
# Functions used to send the SMS message
########################################################
function httpRequest($url){
$pattern = "/http...([0-9a-zA-Z-.]*).([0-9]*).(.*)/";
preg_match($pattern,$url,$args);
$in = "";
$fp = fsockopen("$args[1]", $args[2], $errno, $errstr, 30);
if (!$fp) {
return("$errstr ($errno)");
} else {
$out = "GET /$args[3] HTTP/1.1\r\n";
$out .= "Host: $args[1]:$args[2]\r\n";
$out .= "User-agent: Ozeki PHP client\r\n";
$out .= "Accept: */*\r\n";
$out .= "Connection: Close\r\n\r\n";
fwrite($fp, $out);
while (!feof($fp)) {
$in.=fgets($fp, 128);
}
}
fclose($fp);
return($in);
}
function ozekiSend($phone, $msg, $debug=false){
global $ozeki_user,$ozeki_password,$ozeki_url;
$url = 'username='.$ozeki_user;
$url.= '&password='.$ozeki_password;
$url.= '&action=sendmessage';
$url.= '&messagetype=SMS:TEXT';
$url.= '&recipient='.urlencode($phone);
$url.= '&messagedata='.urlencode($msg);
$urltouse = $ozeki_url.$url;
if ($debug) { echo "Request: <br>$urltouse<br><br>"; }
//Open the URL to send the message
$response = httpRequest($urltouse);
if ($debug) {
echo "Response: <br><pre>".
str_replace(array("<",">"),array("<",">"),$response).
"</pre><br>"; }
return($response);
}
########################################################
# GET data from sendsms.html
########################################################
$phonenum = $_POST['recipient'];
$message = $_POST['message'];
$debug = true;
ozekiSend($phonenum,$message,$debug);
?>
ประมาณนี้แหล่ะลองอ่านโค้ดดูเอานะ....
|
|
|
|
|
Date :
2010-04-15 22:49:25 |
By :
chineji |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|