Skip to content

Instantly share code, notes, and snippets.

@multitel
Created October 28, 2014 15:12
Show Gist options
  • Save multitel/044e70a7978c6ef526ad to your computer and use it in GitHub Desktop.
Save multitel/044e70a7978c6ef526ad to your computer and use it in GitHub Desktop.
<?php
$server_url = 'https://sapi.multitel.net/json/releasenumbers/';
if(isset($_POST['submit'])) {
$data = array(
'UserName' => $_POST['username'],
'Password' => $_POST['password'],
'Number' => $_POST['number'],
);
$handle = curl_init($server_url);
curl_setopt($handle, CURLOPT_POST, true);
curl_setopt($handle, CURLOPT_POSTFIELDS, $data);
curl_exec($handle);
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Release Numbers</title>
</head>
<body>
<form name="form1" method="post" action="">
Username : <input type="text" name="username" />
<br />
Password : <input type="text" name="password" value="password" />
<br />
Number : <input type="text" name="number" value="" />
<br />
<input type="submit" name="submit" value="submit" />
</form>
</body>
</html>
@multitel
Copy link
Author

Successful output:

{"DATA":[{"RETURN":"244225001003"}]}

Unsuccessful output:

{"DATA":[{"RETURN":"-3"}]}

For more return codes, please visit:
http://www.multitel.net/docs/label/releasenumbers

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment