Apabila kita telah sukses menginstal gammu di komputer kita, dimana kita sudah bisa mengirim sms dari gammu yang telah terpasang di komputer kita, maka ketika ada sms yang masuk gammu akan langsung menyimpanya di tabel inbox. Kali ini saya akan ajarkan bagaimana melakukan pengecekan sms masuk di gammu.





Pada dasarnya untuk melakukan pengecekan sms masuk di gammu, kita cukup membuat script untuk mengecek tabel inbox. Kali ini saya akan memberikan script mengecek inbox dengan menggunakan ajax (asyncronous javascript and xml). Ajax adalah sebuah metode yang digunakan untuk melakukan refresing halaman tanpa user tahu kalau tuh halaman di refresh. Ajax sudah diterapkan di banyak website-website besar contohnya adalah google maupun facebook.

Berikut script untuk mengecek sms masuk menggunakan ajax (index.php)



<script type="text/javascript">
function cekinbox()
{
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('cekinbox').innerHTML = $http.responseText;
setTimeout(function(){$self();}, 10000);
}
};
$http.open('GET', 'cek_inbox.php' + '?' + new Date().getTime(), true);
$http.send(null);
}
}
setTimeout(function() {cekinbox();}, 10000);
</script>
<div id="cekinbox">
<?
// 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='20%' align='left'>Pengirim</th>
<th width='45%' align='left'>Isi</th>
<th width='20%' align='left'>Tanggal</th>
</tr>
";
$inbox = mysql_query("SELECT * FROM inbox ORDER BY ID DESC");
while($tinbox=mysql_fetch_array($inbox))
{
echo "
<tr>
<td align='left'>$tinbox[SenderNumber]</td>
<td align='left'>$tinbox[TextDecoded]</td>
<td align='left'>$tinbox[ReceivingDateTime]</td>
</tr>
";
}
?>
</div>
view raw inbox.php hosted with ❤ by GitHub
Script cek_inbox.php


<?
// 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='20%' align='left'>Pengirim</th>
<th width='45%' align='left'>Isi</th>
<th width='20%' align='left'>Tanggal</th>
</tr>
";
$inbox = mysql_query("SELECT * FROM inbox ORDER BY ID DESC");
while($tinbox=mysql_fetch_array($inbox))
{
echo "
<tr>
<td align='left'>$tinbox[SenderNumber]</td>
<td align='left'>$tinbox[TextDecoded]</td>
<td align='left'>$tinbox[ReceivingDateTime]</td>
</tr>
";
}
?>
view raw cek_inbox.php hosted with ❤ by GitHub