mysql_connect()
尽管不鼓励使用它,但我目前正在使用它。我的网络服务不支持PDO
。我目前已将我的代码格式化为PDO
,但现在我被迫将其更改为mysяl_connect()
. 在这些更改之后,我现在收到一个页面错误并且没有任何显示。我包括一个database_connect.php
与另一个页面一起工作的页面,而不是我的改编代码。我的代码中导致此错误的问题是什么?这是我的页面
代码
include ('./snippets/db_connect.php');
$query = ("SELECT class_name, class_caption, class_credit_hours, class_description
FROM class
");
$query->execute();
if ($query->execute()){
$totalhours = 0;
while ($row = mysql_fetch_assoc( $query )){
print "<b>" . $row['class_name'] . "</b><br>";
print $row['class_caption'] . "<br>";
print $row['class_description'] . "<br>";
print $row ['class_credit_hours'] . "hrs. <br>";
print "------------------------------<br />";
$totalhours += $row['class_credit_hours'];
}
print "<p>Total hours for Major: " . $totalhours . ".</p>";
"<div> </div>"