Any body here using clickatell sms gateway?

Hello,

clickatell sms gateway 2way sms callback does not return the correct ‘from’ and ‘to’ parameter values. They infact returning values. but ‘from’ and ‘to’ are showing (showing same number for both) a number which is not really the origination. i contacted clickatell but they sad they don’t see any problem in thire side.

$from=$_POST['from'];
$to=$_POST['to'];
$text=$_POST['text'];
$msgid=$_POST['moMsgId'];
$dt=$_POST['timestamp'];

$query = "INSERT into 2way_sms VALUES ('','$from','$to','$text','$msgid','$dt')";
if ($result=mysql_query($query) or die (mysql_error()));
mysql_close($link);
?>