bit.ly API kullanımı sorunları (kısaltmak, arama ve tıklama)

0 Cevap php

benim zaman parçası PHP dev dediacted is'nt gibi, ben bir sorun wich çözmek muhtemelen kolay olan, ama kesinlikle hiçbir günlükleri (PHP günlükleri, tarayıcı kundakçı günlükleri ...) ben çok şaşırıp yaşıyorum.

Here's my code; as I'm testing stuff, it's pretty raw. The index.php file :

<script type="text/javascript" src="http://www.google.com/jsapi"></script>
<script type="text/javascript">
  // You may specify partial version numbers, such as "1" or "1.3",
  //  with the same result. Doing so will automatically load the 
  //  latest version matching that partial revision pattern 
  //  (e.g. 1.3 would load 1.3.2 today and 1 would load 1.4.2).
  google.load("jquery", "1.4.2");

  google.setOnLoadCallback(function() {
    // Place init code here instead of $(document).ready()
    $("#shrelock").submit(function(){
        var url = $(this).attr('action');
        $.ajax({
          url: url,
          success: function(data) {
            alert(data);
          }
        });
        return false;
    });
  });
</script>

    <form id="shrelock" action='stats.php' method='get'>
        <input type="text" name="url"/>
    </form>

Şimdi stats.php dosyası:

include("bitly.php");
if ( isset($_POST["url"])   ){
    $urlToCheck = $_POST["url"];
    $bitly = new bitly('myLogin', 'myKey'); 
    print $bitly->shorten($urlToCheck);

}

0 Cevap