Rank: Newbie Groups: Member
Joined: 6/28/2011 Posts: 1 Points: 3 Location: Bangaldesh
|
Hello, If my client send sms to [username ][space][msg][+447786202820] Can i read this always it is free and remain forever?
Then i will buy credit
will you kindly give me php code for reciving sms ?
|
Rank: Advanced Member Groups: Administration
Joined: 5/8/2007 Posts: 333 Points: -151
|
The number +447786202820 is a trial number.
We can not guarantee that the number will always be available. We have in the past changed the number at short notice.
As long as we have the number use are able to use it.
The following PHP sample show how to receive SMS message to you website (via HTTP POST forwarding)
$From = $_POST['from'] $Text = $_POST['text']
|