Jump to content

stilv

Member
  • Posts

    4
  • Joined

  • Last visited

Everything posted by stilv

  1. Just created this and seems to be working but needs to be cleaner looking, some how i cant add input code working: http://stilv.com/test.php <?php function curPageURL() { $pageURL = 'http'; if ($_SERVER["HTTPS"] == "on") {$pageURL .= "s";} $pageURL .= "://"; if ($_SERVER["SERVER_PORT"] != "80") { $pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"]; } else { $pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"]; } return $pageURL; } function droidwsURL($url) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, "http://droid.ws/api.php?url=".urlencode($url)); curl_setopt($ch, CURLOPT_RETURNTRANSFER,1); curl_setopt($ch, CURLOPT_HEADER, 0); $shorturl = curl_exec ($ch); curl_close ($ch); return $shorturl; } ?> <?php echo droidwsURL (curPageURL()); ?>
  2. i see, demo http://droidtweak.com/topic/208372-fpse-for-android-is-the-fastest-most-compatible-ps1-emulator-for-handheld-devicesie-psx-playstation-1-more-than-200k-active-users/ on the user panel on left of post, you see the bit url shortener, that what im looking to replace with mine http://droid.ws/*
  3. I see, should it look like this? im not a good coder <script> shorturl=$(curl -s http://droid.ws/api.php?url={query}) echo $shorturl </script> <input onclick = "this.select()" type = 'text' id = "shorturl" class="sturl_field span5" ><a class="btn btn-primary btn-large"><span id="flashbtn">Copy Me!</span></a>
  4. i run my own android url shortener and like to have an java output i can add to my other sites site: http://droid.ws api: http://droid.ws/api.php?url= demo: http://droid.ws/api.php?url=http://droidtweak.com any help will be great
×
×
  • Create New...