Answers for "send sms api php"

PHP
0

send data to api php

<?php
//The url you wish to send the POST request to
$url = $file_name;

//The data you want to send via POST
$fields = [
    '__VIEWSTATE '      => $state,
    '__EVENTVALIDATION' => $valid,
    'btnSubmit'         => 'Submit'
];

//url-ify the data for the POST
$fields_string = http_build_query($fields);

//open connection
$ch = curl_init();

//set the url, number of POST vars, POST data
curl_setopt($ch,CURLOPT_URL, $url);
curl_setopt($ch,CURLOPT_POST, true);
curl_setopt($ch,CURLOPT_POSTFIELDS, $fields_string);

//So that curl_exec returns the contents of the cURL; rather than echoing it
curl_setopt($ch,CURLOPT_RETURNTRANSFER, true); 

//execute post
$result = curl_exec($ch);
echo $result;
?>
Posted by: Guest on May-27-2021
0

php sms sending script

<?php
  
 $to = "[email protected]";
 $from = "[email protected]";  
 $message = "This is a text message";
 $headers = "From: $fromn";
 mail (sto,  '', $message, $headers);

?>
   
#get a domain and succees
Posted by: Guest on August-17-2021

Browse Popular Code Answers by Language