html>
SMS Web Sender DEMO!
php
if ($action != "submit") {
?>
Any username or password you enter here will not be stored
in any way (although we're not using SSL either)
Also, as you can see most of these are UK sites, not all
of them will support international numbers!
ç«å³å¦ä¹ âPHPå è´¹å¦ä¹ ç¬è®°ï¼æ·±å ¥ï¼âï¼
} else {
// contains the site details
include("sites.php");
// contains main class
include("class.sms_web_sender.php");
if (empty($number) || empty($site) || empty($message)) {
die("Make sure number, site and message are not empty");
}
初阶PHP Apache MySQL网站设计来自作者多年学习、应用和讲授PHP的经验与体会,是专为学习PHP+MySQL数据库编程人员编与的入门教材。在最后二章设计了2个贴近实际应用的典型案例:留言本系统和论坛系统,每个案例先介绍开发思路、步骤,再给出全部源代码,使所学内容与实际应用紧密结合,特别是论坛系统将全书的案例串讲起来,力求使读者学到最贴近应用前沿的知识和技能。
if (!empty($debug) && $debug == "yes") {
$debug = true;
} else {
$debug = false;
}
// signature bit of text that's required by some
// sites like MTNSMS.com, you can leave as is
$signature = "*";
// create instance of sms web sender the one
// optional argument will determine if
// debug is turned on or not
$sms = new sms_web_sender($debug);
// add accounts
// 1st argument: username
// 2nd argument: password
// 3rd argument: server
// 4th argument: weight (this is only useful when
// shuffling the logins, the higher
// the weight, the more likely it'll
// be placed near the top of the list)
// default if left blank: 1
$sms->add_login("$user", "$pass", "$site");
// add Proxy Server details if required
// I haven't tested this myself, feature of jm_sms
//$sms->setProxyServer("proxyserver");
//$sms->setProxyPort(81);
//$sms->setProxyUser("proxyusername");
//$sms->setProxyPass("proxypassword");
//$sms->setProxy(true);
// passes the number, signature and message in an array
$result = $sms->send_sms(array("number"=>$number, "signature"=>$signature, "message"=>$message));
if ($result) {
echo "
Sent!
";} else {
echo "
Could not send :(
";echo "";
}
}
?>










