How to add UDH to concatenate a long sms before sending to API Programming Web Development by jerry4all …($request, 0, strlen($request)-1); $url = "http://sms.bulksms.com/bulksms/bulksms.php"; $ch = curl_init(); //initialize curl handle curl_setopt($ch, CURLOPT_URL… Re: Pass a url via GET or POST Programming Web Development by Biiim …fopen("C://webhosting/studentmug.com/api/bulksms/sms.php?Username={$username}&Password={$password}&…there any reason you cant use `require('bulksms/sms.php');` ? Then you have all… 'test'; $password = '1234'; require('bulksms/sms.php'); var_dump($success); ?> bulksms/sms.php <?php if($password == '… Re: How to add UDH to concatenate a long sms before sending to API Programming Web Development by pritaeas This should be provided by your API (bulksms in your case). I advise you contact them, or perhaps it is in their documentation. Re: How to add UDH to concatenate a long sms before sending to API Programming Web Development by jerry4all [QUOTE=pritaeas;1763953]This should be provided by your API (bulksms in your case). I advise you contact them, or perhaps it is in their documentation.[/QUOTE] That's what I thought. But they keep saying I should contact my developer, so I thought it's something I have to do to my code how to store multiple checkbox data in database Programming Databases by bhawesh9696 …']; for($i=0;$i<count($checkbox);$i++){ $bulksms="INSERT INTO bulk_sms (sent_sms,firmname_sms,contact_sms) VALUES('"…;','".$row['firm_name']. "','$contact_sms')"; $smsquery=mysqli_query($conn, $bulksms); } } $sql="SELECT * FROM inventory_details where status ='0… curl function is not working Programming Web Development by jacob21 …, $sendPass, $sendID) { $msg=urlencode($msg); $ch = curl_init(); $url="http://bulksms.mysmsmantra.com:8080/WebSMS/SMSAPI.jsp?username=xxxxx&password… Pass a url via GET or POST Programming Web Development by rayidi …. i'm tried with fopen("http://api.studentmug.com/bulksms/sms.php?Username=<something>&Password=<something… Displaying blank page after inserting php code Programming Web Development by blueguy777 …;div class="inner"> <section class="bulksms"> <h2>HOME</h2> <… Re: Sms Notification send via web to mobile Programming Web Development by rajeesh_rsn … this [URL="http://www.boomsms.com/bulksms-pricing.php"]http://www.boomsms.com/bulksms-pricing.php[/URL] If our service… Re: Send an SMS to a mobile using C# Programming Web Development by vuyiswamb … other Sms gateway Service Provider like [URL="www.bulksms.com"]www.bulksms.com[/URL] [URL="www.Clickatell.com"… Re: Sending SMS from JSP Programming Web Development by stephen84s … high volume of SMSes to send you should look the bulksms providers option cause it may be cheaper and the speed… Re: send SMS from PC to phone Programming Web Development by "ICode" i've already solved it ... bulkSMS.com Re: SMS phone from PC Programming Software Development by "ICode" im using it for a certain project, it must be an SMS! anyway, i've found my solution, ... , bulkSMS.com and im checking into your solution .. it looks good! thanks for helping! Re: Phone number validaion(10 digit) Programming Web Development by jacob21 …, $sendPass, $sendID) { $msg=urlencode($msg); $ch = curl_init(); $url="http://bulksms.mysmsmantra.com:8080/WebSMS/SMSAPI.jsp?username=nilax&password… Re: How To Setup A Bulk Sms Gateway Using Gsm Modem Digital Media Digital Marketing by tinstaafl … that offer sms gateway api's. [Click Here](http://www.bulksms.com/int/w/eapi-sms-gateway.htm) [Click Here](http… Re: curl function is not working Programming Web Development by pritaeas Is the message encoded properly, are the spaces replaced with %20 for example ? Re: curl function is not working Programming Web Development by jacob21 [QUOTE=pritaeas;1602180]Is the message encoded properly, are the spaces replaced with %20 for example ?[/QUOTE] When i echo $url & put $url value in the url its working fine. I am using trim function for message $message=trim($_POST['message']); another thing:its working fine when message has no space i.e mynameisjacob Re: curl function is not working Programming Web Development by ddymacek try $message = urlencode($message); then tack it on the end of your url string. Re: Pass a url via GET or POST Programming Web Development by pritaeas `fopen` may not be allowed. "Bad Request" usually means you did not provide all/correct data. Hard to help you without knowing the API, nor seeing your code. Re: Pass a url via GET or POST Programming Web Development by MarPlo Hi, If you want to pass a url via GET, which means to add that url in the link address, try with: `file_get_contents('http://domain/page.php?name='. rawurlencode($the_url_to_pass));` , or with cUrl, but adding that url in the address encoding with rawurlencode(). Re: Displaying blank page after inserting php code Programming Web Development by toxicandy Line 47: `if(isset($_GET['msg']) {` should be `if(isset($_GET['msg'])) {` missing a parentheses. Do you have errors turned off? Re: Displaying blank page after inserting php code Programming Web Development by blueguy777 lots of Thanks toxicandy, it's solved