Call a Webservice
#5

Код:
<?php
 
/*
------------------------------------------------------------------------------
SMS_RECEIPT.PHP
------------------------------------------------------------------------------

------------------------------------------------------------------------------
*/
 
// Stдng av PHP:s felrapportering
error_reporting(0);
 
// Plocka ut avsдndarnumret
$nr = $_REQUEST['nr'];
 
// Plocka ut statuskoden
$code = urldecode($_REQUEST['code']);
 
// Gцr olika saker beroende pе statuskod
if ($code == 1) {
 
    // SMS:et har kommit fram
 
} elseif (($code == 2) || ($code == 5)) {
 
    // Fel uppstod
 
} else {
 
    // Operatцren hanterar SMS:et
 
}
?>
This was what ive came up with and it worked so when my sms service reaches the site they recieve a txt message back to their phone with this code
Reply


Messages In This Thread
Call a Webservice - by goviscrap - 17.11.2012, 22:50
Re: Call a Webservice - by Mauzen - 17.11.2012, 23:40
Re: Call a Webservice - by goviscrap - 17.11.2012, 23:44
Re: Call a Webservice - by saiberfun - 18.11.2012, 10:02
Re: Call a Webservice - by goviscrap - 18.11.2012, 13:52

Forum Jump:


Users browsing this thread: 1 Guest(s)