phpmady Posted April 9, 2011 Share Posted April 9, 2011 Hi, I am calling the sms gateway to send sms, $sms_msg = "hi this is mubarak"; $url = $urlAccount_home."?username=".$userAccount."&password=".$passAccount."&number=".$O_Mobile."&sender=".$userSenderSMS."&msg=".$sms_msg; if (!($fp =fopen($url,"r"))) echo "<br><center>خطا في الاتصال </center><br>"; $result =fread($fp,10); fclose($fp); when i am sending like this am sending only the message "Hi" I am not getting the whole message... What might be the problem in sending the sms gateway.. Please help me if you guys came to know, Thanks and Regards, Mubarak Quote Link to comment https://forums.phpfreaks.com/topic/233211-problem-in-fopen-function/ Share on other sites More sharing options...
php.ajax.coder Posted April 9, 2011 Share Posted April 9, 2011 Have you tried increasing the length value in fread fread ( resource $handle , int $length ) $result =fread($fp, 1024); Quote Link to comment https://forums.phpfreaks.com/topic/233211-problem-in-fopen-function/#findComment-1199457 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.