null döndürüyor jquery json fonksiyonu

0 Cevap php

Ben aşağıdaki gibi bir jquery komut dosyası var:

$.ajax({
   type: "GET",
   url: "http://www.site.com/v4/ajax/get_song_info.php",
   data: ({id : song_id }),
   dataType: "json",
   success: function(data)
   {
      alert( "Data: " + data );
   }
 });

Ve ilişkili php sayfası:

<?php

    include_once '../connect.php';

    $song_id = $_GET['id'];

    $query = mysql_query("SELECT * FROM songs WHERE id = '$song_id' LIMIT 1");

    $song = mysql_fetch_row($query);

    $song_info = array( htmlentities($song[3]) , htmlentities($song[4]) );

    header('Content-Type: application/json');
    echo json_encode($song_info); 
?>

Ben bir tarayıcıda kendi çağırdığınızda php böyle bir şey verir: ["Peaches","I Feel Cream (Proxy Remix)"]

Ancak ben jQuery benim uyarısı gösterir çağrı yaptığınızda 'Veri: null'

0 Cevap