只是想知道,將下面的代碼安排造成的任何問題時調用的mysql_connect,即:PHP代碼和換行/回車
public function connect() {
mysql_connect($this->host,
$this->username,
$this->password)
or die("Could not connect. " . mysql_error());
還是需要將全部在一行,即:
mysql_connect($this->host,$this->username,$this->password) or die("Could not connect. " . mysql_error());
謝謝。
它應該沒關係。你爲什麼不發佈你得到的錯誤。 – AlG 2010-04-27 15:58:12
不明白downvote,這個問題似乎很清楚。 – 2010-04-27 16:05:39