2012-01-11 127 views

回答

4

Spotify應用程序不支持PHP。正式支持HTML,CSS和JavaScript。(Source

也許你可以在你的服務器上創建一個後端,你可以使用JavaScript進行訪問。

2

在manifest.json中添加

"RequiredPermissions": [ 
     "http://your.site.com", 
     "http://ajax.googleapis.com", 
      ]

在應用程式中加入

$.getJSON("http://your.site.com/get_variable.php", { "variable": variable }, 
    function(data) { 
     //do something with the returned data 
    } 
).error(function() { console.log("error getting variable"); });

在您的服務器添加文件get_variable.php,做你的SQL

$con = mysql_connect("localhost","user_name","password"); 

if (!$con){ 
    die('Could not connect: ' . mysql_error()); 
} 
$db_selected=mysql_select_db("database_name", $con); 

if (!$db_selected){ 
    die ("Can\'t use database_name : " . mysql_error()); 
} 

$variable = $_GET["variable"]; 
$sql = "your sql using $variable" 
$result = mysql_query($sql); 
$search_results=array(); 
while($row = mysql_fetch_array($result)){ 
    //add data from $row into $search_results 
} 
echo json_encode($search_results); 
+0

謝謝! ^^這將工作! – 2012-01-15 03:31:44