Im having a php page that checks the second word of the sms msg.
Ex.
<?php
if($what == "okei")
{
echo "Test service done, you said $what";
}
if($what == "")
{
echo " you said nothing!";
}
?>
and in my sms-service:
keyword = test
url = "http://167.0.23.1/test.php?$what=%s"
on my phone i send "test okei"
As with that msg i can get the result as " Test service done, you said okei".
where "okei" is the parameter as $what.
but if i send it just as "test",
it displays my "default" sms-service msg.
with a form page, i get it right. but from kannel, it seems not to
recognise it.
where is my problem?