DTH Plan
https://mobilerechargenow.com/dth-plan.php?username=$username&apikey=$apikey&operator=$operator
Parameters | Description | Example |
---|---|---|
username | Find on our apikey page | MRN1223334 |
apikey | Find on our apikey page | 56546456 |
operator | operator code | AT |
<?php
$username=""; // pooja username
$apikey=""; // AFJF4345 apikey
$operator=""; //operator code
$url = "https://mobilerechargenow.com/dth-plan.php?username=$username&apikey=$apikey&operator=$operator";
$ch = curl_init($url);
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_HEADER, 0);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
$fetchdata = curl_exec($ch);
curl_close($ch);
echo $fetchdata;
?>