HelplineWorld24

This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

Showing posts with label Php. Show all posts
Showing posts with label Php. Show all posts

Saturday, November 5, 2016

BulkSMS মার্কেটিং করুন সহজেই PHP SCRIPT দিয়ে, নিজের সাইট থেকে বাল্ক এসএমএস পাঠান

images-5
বাল্ক এসএমএস বর্তমানে সবাই কম বেশী ব্যবহার করে
থাকি। কিন্তু বাল্ক এসএমএস যারা প্রভাইড করেন তাদের সাইট
থেকে বাল্ক এসএমএস পাঠাতে অনেকেই চাননা। এছাড়াও
বাল্ক এসএমএস দিয়ে সহজেই মার্কেটিং করতে চাচ্ছেন
কিন্তু সহজ উপায় খুঁজে পাচ্ছেননা। তাদের জন্য আমার
আজকের এই পোস্ট।
ছোট এক পেজ এর একটি PHP SCRIPT যা দিয়ে যে
কোন বাল্ক এসএমএস প্রভাইডার প্রতিস্থানের থেকে বাল্ক
এসএমএস নিয়ে এই SCRIPT দিয়ে এসএমএস পাঠাতে
পারবেন। যেভাবে পাঠাবেনঃ
Script টা কপি করুন।
যে কোন Cpanel এ আপলোড করুন index.php নামে।
এবার number.txt নামের একটা TEXT ফাইল তৈরি করুন।
TEXT ফাইলে মোবাইল নাম্বার গুলো লিখুন যেগুলোতে
এসএমএস পাঠাতে চান।
এবার index.php ফাইল লিঙ্ক এ ভিজিট করুন। NUMBER এর
জায়গায় লিখুন কতগুলো নাম্বার লাইন পর্যন্ত এসএমএস
পাঠাবেন।
MESSAGE এর জায়গায় MESSAGE লিখুন।
তারপর সেন্ট করুন…..




$totalnumber)
break;
$phonenumber=substr($phonenumber,0,11);
send_sms($phonenumber, $smstosend);
$i++;
}
}
function send_sms($phonenumber=”,$smstosend=”)
{
$country = “BD”;
$phonenumber=str_replace(‘+’,”,$phonenumber);
$phonenumber=str_replace(”,”,$phonenumber);
$phonenumber=str_replace(‘\n’,”,$phonenumber);
if (strlen($phonenumber)==”11″ and $country==”BD”)
{
$phonenumber=”88″.$phonenumber;
}
if (strlen($phonenumber)==”13″)
{
if (preg_match (“/^88017/i”, “$phonenumber”) or
preg_match(“/^88016/i”, “$phonenumber”)or
preg_match (“/^88015/i”, “$phonenumber”) or
preg_match(“/^88011/i”, “$phonenumber”) or
preg_match (“/^88018/i”, “$phonenumber”) or
preg_match (“/^88019/i”,”$phonenumber”)
)
{
// your username here
$myaccount=urlencode(“reselldemo”);
// your password here
$mypasswd=urlencode(“reselldemo”);
$mymsg=urlencode(“$smstosend”);
// your sendername here
$myfrom=urlencode(“THESOFTKING”);
// your provider sms calling API here
$sendsms = “http://smsgetway.net/users/” .”?type=0″ .
“&username=$myaccount” .
“&password=$mypasswd” .
“&destination=$phonenumber” .
“&source=$myfrom” .
“&message=$mymsg” .
“&dlr=0″;
$getsmsstatus=file_get_contents($sendsms);
echo”
Message sent at “.$phonenumber;
}
}
else
{
echo ”
Not sent! “;
}
}
?>

Simple SMS Marketing Script

Line Of NumberMESSAGE