Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions sendsms.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@
$message=$ob->sendSMSToMany($_POST["txt_mobno"],$_POST["ta_msg"]);
echo "<div style=\"color:red;\">$message</div>";
}
// secure your post method
$ob = new Sms(strip_tags( trim$_POST["txt_username"]),strip_tags( trim$_POST["txt_password"]));
$message=$ob->sendSMSToMany(strip_tags( trim$_POST["txt_mobno"]),strip_tags( trim$_POST["ta_msg"]));


?>
<div>Note:for groupSms seperate each number using ;(semicolon)</div>
<form method="post" name="InstantSMS" style="" action="sendsms.php">
Expand Down