Hello,
The part of my script on my site that recive the content of the sms messanges looks like this:
// message
$sms = @urldecode($_REQUEST["sms"]);
When the script is called it looks likte this: min-sida.php?sms=test+123&tariff=....
I want the 123 and the test to be separated into two variables like:
$ffd = "123"
$ffc = "test"
Is that possible?
Best Regards
Oskar R