コード例 #1
0
ファイル: 7pms1.php プロジェクト: Akshayf444/breathfree
<?php

require_once "./includes/initialize.php";
$bmlist = man_power::BMlist2('BETWEEN 1 AND 25');
foreach ($bmlist as $BM) {
    $message = "Dear " . $BM->BM_Name . "," . PHP_EOL;
    $message .= "The Mebapp reporting system will be active only for today.Login now to share your team's performance for Go-Make A Difference." . PHP_EOL . "Regards" . PHP_EOL . "Cipla Respiratory";
    $sendSMS = new SMS();
    $sendSMS->sendSMS($BM->BM_Mobile, $message);
}
コード例 #2
0
ファイル: 7pms4.php プロジェクト: Akshayf444/respi2
<?php

require_once "./includes/initialize.php";
$bmlist = man_power::BMlist2(' > 100');
foreach ($bmlist as $BM) {
    $message = "Dear " . $BM->BM_Name . "," . PHP_EOL;
    $message .= "The Mebapp reporting system will be active only for today.Login now to share your team's performance for Go-Make A Difference." . PHP_EOL . "Regards" . PHP_EOL . "Cipla Respiratory";
    $sendSMS = new SMS();
    $sendSMS->sendSMS($BM->BM_Mobile, $message);
}
コード例 #3
0
ファイル: 7pms2.php プロジェクト: Akshayf444/respi2
<?php

require_once "./includes/initialize.php";
$bmlist = man_power::BMlist2('BETWEEN 36 AND 70');
foreach ($bmlist as $BM) {
    $message = "Dear " . $BM->BM_Name . "," . PHP_EOL;
    $message .= "The Mebapp reporting system will be active only for today.Login now to share your team's performance for Go-Make A Difference." . PHP_EOL . "Regards" . PHP_EOL . "Cipla Respiratory";
    $sendSMS = new SMS();
    $sendSMS->sendSMS($BM->BM_Mobile, $message);
}
コード例 #4
0
ファイル: 7pms3.php プロジェクト: Akshayf444/respi2
<?php

require_once "./includes/initialize.php";
$bmlist = man_power::BMlist2('BETWEEN 71 AND 100 ');
foreach ($bmlist as $BM) {
    $message = "Dear " . $BM->BM_Name . "," . PHP_EOL;
    $message .= "The Mebapp reporting system will be active only for today.Login now to share your team's performance for Go-Make A Difference." . PHP_EOL . "Regards" . PHP_EOL . "Cipla Respiratory";
    $sendSMS = new SMS();
    $sendSMS->sendSMS($BM->BM_Mobile, $message);
}