2012-08-15 42 views
0

我試圖開發使用PHP Heroku的一個PHP應用程序....使用xeround,Heroku的,PHP

我已經做了添加了添加使用的鏈接 - https://devcenter.heroku.com/articles/xeround#connecting-to-xeround

現在,我試圖查詢數據庫楊只是一個簡單的查詢,但不顯示任何錯誤。

我可以知道連接字符串是否仍然需要嗎?如果需要的話,我可以知道作爲主機應該放什麼東西嗎?

如果有任何後續問題需要,請讓我知道。

在此先感謝!

回答

0

你可以試試這個:

$url=parse_url(getenv("DATABASE_URL")); 

$server = $url["host"]; 
$username = $url["user"]; 
$password = $url["pass"]; 
$port = $url["port"]; 
$db = substr($url["path"],1); 

$link = mysql_connect($server . ":" . $port, $username, $password); 
if (!$link) { 
    die('Could not connect: ' . mysql_error()); 
} 
echo 'Connected successfully'; 

[來源:https://devcenter.heroku.com/articles/cleardb#using-cleardb-with-php]

希望它能幫助:)