Shortz Tools
| ||
|
Bookmarklet Use our bookmarklet tool to quickly and easily create short url's from your browser toolbar. Simply drag the link below into your browser toolbar and click it when you on are a web page that you want to shortzify. Shortzify |
||
|
Simple PHP API Use this simple PHP API to generate a Shortz.me URL from any PHP script.
function shortzify ($url) {
$ch = curl_init();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, 5);
$text = curl_exec($ch);
curl_close($ch);
return $text;
}
$url = 'http://shortz.me/api.php?url=HTTP://ENTER FULL URL HERE';
echo shortzify($url);
|
||
| If you have any suggestions to help us improve our site, please use the contact us form by clicking here. Contact Us |