I am trying to send SMS using my web app. I found API that helps me to do that, but its documentation is poor.
What I need is to send the request using PHP.
Finally, I have sent the request correctly using JavaScript. Now I want to do the same with PHP.
var Username="abcdefg"
var password="123456789"
var language="1"
var sender="mysenderid"
var Mobile= mobile
var message= "Dear name would you please give us your feedback about your last order click here "
$.post(`https://smsmisr.com/api/webapi/?Username=${Username}&password=${password}&language=${language}&sender=${sender}&Mobile=${Mobile}&message=${message}`, function (data){
console.log(data);
});