Ada beberapa status pengiriman pada gammu yaitu
SendingOK, SendingOKNoReport, SendingError, DeliveryOK, DeliveryFailed, DeliveryPending, DeliveryUnknown, ErrorJika SMS telah terkirim dengan sukses biasanya statusnya adalah SendingOK, SendingOKNoReport.
Sedangkan jika gagal maka statusnya adalah SendingError, DeliveryOK, DeliveryFailed, DeliveryPending, DeliveryUnknown, Error
nah berikut aplikasi untuk mengecek dari laporan pengiriman sms dari gammu.
Script sent_item.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
function cekoutbox() | |
{ | |
var | |
$http, | |
$self = arguments.callee; | |
if (window.XMLHttpRequest) { | |
$http = new XMLHttpRequest(); | |
} else if (window.ActiveXObject) { | |
try { | |
$http = new ActiveXObject('Msxml2.XMLHTTP'); | |
} catch(e) { | |
$http = new ActiveXObject('Microsoft.XMLHTTP'); | |
} | |
} | |
if ($http) { | |
$http.onreadystatechange = function() | |
{ | |
if (/4|^complete$/.test($http.readyState)) { | |
document.getElementById('cekoutbox').innerHTML = $http.responseText; | |
setTimeout(function(){$self();}, 10000); | |
} | |
}; | |
$http.open('GET', 'cek_outbox.php' + '?' + new Date().getTime(), true); | |
$http.send(null); | |
} | |
} | |
setTimeout(function() {cekoutbox();}, 10000); | |
</script> | |
<div id="cekoutbox"> | |
<? | |
// koneksi ke database | |
$hostname_config = "localhost"; | |
$database_config = "ok"; | |
$username_config = "root"; | |
$password_config = "root"; | |
$config = mysql_pconnect($hostname_config, $username_config, $password_config) or trigger_error(mysql_error(),E_USER_ERROR); | |
mysql_select_db($database_config, $config); | |
// tampilkan database | |
echo"<center><table width=100% border='1'> | |
<tr> | |
<th width='10%' align='left'>Nomor Tujuan</th> | |
<th width='40%' align='left'>Isi Pesan</th> | |
<th width='10%' align='left'>Waktu Pengiriman</th> | |
<th width='10%' align='left'>Status</th> | |
</tr> | |
"; | |
$outbox = mysql_query("SELECT * FROM sentitems ORDER BY ID DESC"); | |
while($toutbox=mysql_fetch_array($outbox)) | |
{ | |
echo " | |
<tr> | |
<td align='left'>$toutbox[DestinationNumber]</td> | |
<td align='left'>$toutbox[TextDecoded]</td> | |
<td align='left'>$toutbox[SendingDateTime]</td> | |
<td align='left'>$toutbox[Status]</td> | |
</tr> | |
"; | |
} | |
?> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
// koneksi ke database | |
$hostname_config = "localhost"; | |
$database_config = "ok"; | |
$username_config = "root"; | |
$password_config = "root"; | |
$config = mysql_pconnect($hostname_config, $username_config, $password_config) or trigger_error(mysql_error(),E_USER_ERROR); | |
mysql_select_db($database_config, $config); | |
echo"<center><table width=100% border='1'> | |
<tr> | |
<th width='10%' align='left'>Nomor Tujuan</th> | |
<th width='40%' align='left'>Isi Pesan</th> | |
<th width='10%' align='left'>Waktu Pengiriman</th> | |
<th width='10%' align='left'>Status</th> | |
</tr> | |
"; | |
$outbox = mysql_query("SELECT * FROM sentitems ORDER BY ID DESC"); | |
while($toutbox=mysql_fetch_array($outbox)) | |
{ | |
echo " | |
<tr> | |
<td align='left'>$toutbox[DestinationNumber]</td> | |
<td align='left'>$toutbox[TextDecoded]</td> | |
<td align='left'>$toutbox[SendingDateTime]</td> | |
<td align='left'>$toutbox[Status]</td> | |
</tr> | |
"; | |
} | |
?> |
Hasil pengecekan :