PHP 实时网站错误

PHP error on live website

我很难在我的网站上显示数据库 table。我无法执行对我的 index.php 文件的查询,但我可以在本地主机上使用 XAMPP 显示 table。我什至无法执行文件中的 MySQL 语句代码。请帮忙!

这是我没有注释掉语句代码的时候:

这是我将代码注释掉的时候:

我什至在我尝试连接的 table 中有数据。这是 index.php:

的代码
    <?php
require_once('database.php');

//Get Category Id
$category_id = filter_input(INPUT_GET, 'category_id', FILTER_VALIDATE_INT);
if ($category_id == NULL || $category_id == false) {
    $category_id = 1;
}

// Get name for selected category
$queryCategory = 'SELECT * FROM categories WHERE categoryID = :category_id';
$statement1 = $link->prepare($queryCategory);
$statement1->bindValue(':category_id', $category_id);
$statement1->execute();
$category = $statement1->fetch();
$category_name = $category['categoryName'];
$statement1->closeCursor();

//Get all categories
$queryAllCategories = 'SELECT * FROM categories   ORDER BY categoryID';
$statement2 = $link->prepare($queryAllCategories);
$statement2->execute();
$categories = $statement2->fetchAll();


//Get products fpr selected category
$queryProducts = 'SELECT * FROM products WHERE categoryID = :category_id ORDER BY productID';
$statement3 = $link->prepare($queryProducts);
$statement3->bindValue(':category_id', $category_id);
$statement3->execute();
$products = $statement3->fetchAll();
$statement3->closeCursor();
?>

<!DOCTYPE html>
<HTML>
    <head>
        <title>My Guitar Shop</title>
          <link rel="stylesheet" type="text/css" href="style.css"/>
    </head>
    <body>
        <header><h1>Product Manager</h1></header>
        <main>
            <hr>
            <h1>Product List</h1>
            <aside>
                <h2>Categories</h2>
                <nav>
                    <ul>
                        <?php foreach ($categories as $category) : ?>
                            <li>    
                                <a href=".?category_id=<?php echo $category['categoryID']; ?>">    
                                    <?php echo $category['categoryName']; ?>
                                </a>
                            </li>
                        <?php endforeach; ?>
                    </ul>
                </nav>
            </aside>
            <section>
                <!-- display a table of products -->
                <h2><?php echo $category_name; ?></h2>
                <table>
                    <tr>
                        <th>Code</th>
                        <th>Name</th>
                        <th class="right">Price</th>
                        <th>&nbsp;</th>
                    </tr>

                    <?php foreach ($products as $product) : ?>

                        <tr>
                            <td><?php echo $product['productCode']; ?></td>
                            <td><?php echo $product['productName']; ?></td>
                            <td><?php echo $product['listPrice']; ?></td>
                            <td><form action="delete_product.php" method="post">
                                    <!-- Delete Product -->
                                    <input type="hidden" name="product_id" value="<?php echo $product['productID']; ?>">
                                    <input type="hidden" name="category_id" value="<?php echo $product['categoryID']; ?>">
                                    <input type="submit" value="Delete">

                                </form>                    
                            </td>
                            <!-- Edit Product -->                    
                            <td><form action="edit_product_form.php" method="post">
                                    <input type="hidden" name="product_id" value="<?php echo $product['productID']; ?>">
                                    <input type="hidden" name="category_id" value="<?php echo $product['categoryID']; ?>">
                                    <input type="submit" value="Edit">

                                </form>                    
                            </td>

                        </tr>
                    <?php endforeach; ?>
                </table>
                <p><a href="add_product_form.php">Add Product</a></p>
                <p><a href="category_list.php">List Product</a></p>
            </section>
        </main>
        <hr>
        <footer><p>&copy; <?php echo date("Y"); ?> My Guitar Shop Inc</p></footer>
    </body>
</html>

为了安全起见,在 database.php 中删除了 php 我的用户名和密码:

    <?php

$dsn = 'mysql:host=mysql.cit336.fullerview.net;dbname=cit336my_guitar_shop1';


try {
  $db = new PDO($dsn, $username, $password);
} catch (PDOException $e) {
  $error_message = $e->getMessage();
  include('database_error.php');
  exit();
}
?>

更新: 好心人帮助我解决了我的第一个问题,但由于我已经编辑了文件,问题仍然在语句中。这几乎就像网站要我删除 SQL 语句但我不想删除它们一样。它们对网站至关重要。

更新 2:

我编辑了 database.php 文件以使 PDO 异常正常工作。但是现在,当我越来越接近我的目标时,我收到了拒绝访问错误。

更新 3:

我能够访问数据库。谢谢大家的帮助,非常感谢。我刚刚输入了密码错误和数据库错误,再次感谢您的帮助!

因为你使用的是mysqli的程序函数来连接,所以->prepare不应该是mysqli_prepare?

此外 bindValue 适用于 PDO,您的代码可以是

$statement1 = mysqli_prepare($link, "SELECT * FROM categories WHERE categoryID =?");
mysqli_stmt_bind_param($statement1, "s", $category_id);
mysqli_stmt_execute($statement1);
mysqli_stmt_bind_result($statement1, $category);
mysqli_stmt_fetch($statement1);