0
我正在使用Wampserver 2.0進行數據庫web開發。 當我運行以下php代碼嵌入到我的html表單中時,服務器崩潰,同時其他頁面上的其他php進程正在有效地響應。 我檢查了我的apache錯誤日誌並看到以下消息: [Fri Oct 22 11:37:04 2010] [error] [client 127.0.0.1]文件不存在:C:/ wamp/www/setapro/setapro ,引用者: 這是PHP代碼執行我:Apache webserver崩潰!
<?php
include 'db_inc.php';
$sql = "select AVG(no_of_satelites) as 'Mean Number of Satelites', AVG( height_of_geoid) as'Mean of HDOP', AVG(rmc_gga_longitude) as 'Mean of Longitude', AVG(rmc_gga_latitude) as 'Mean of latitude' FROM total_rmcs_ggas ";
$result = mysql_query($sql, $link);
if (!$result) {
die("Query to show averages from table failed");
}
echo 'Number of rows returned from query = '.mysql_num_rows($result) or die();
echo "<h2>Table:Averages for the GPS Receiver</h2>";
while ($row = mysql_fetch_assoc($result)){
echo $row['Mean Number of Satelites'].' '.$row['Mean of HDOP'].' '.$row['Mean of Longitude'].' '.$row['Mean of latitude'].'<br />';
}
mysql_free_result($result);
mysql_close();
?>
我不知道是哪個文件,它是在談論,因爲我有我的文檔根目錄中的所有文件。我需要一些幫助。謝謝。 「setapro」是項目文件夾名稱而不是文件。
定義「服務器崩潰」。究竟會發生什麼? – 2010-10-22 10:00:35
你在用什麼IDE?嘗試將代碼紀錄到apache停止崩潰以查找問題的位置,如果問題出在代碼中。我對此有些懷疑。 – 2010-10-22 10:22:05
我正在使用eclipse。我想用mysql_close($ link)代替mysql_close()。這是我的錯誤。謝謝。 – ibiangalex 2010-10-22 10:54:16