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)
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 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> |
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); | |
// 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> | |
"; | |
} | |
?> |