繁体   English   中英

php include在主机服务器上不起作用,但在本地(xampp)服务器上起作用

[英]php include not working on host server but works on local (xampp) server

我无法解决为什么本地服务器上的本地工作失败的原因。 它连接到数据库,检索并显示数据,但是检索数据失败并包含表单。 希望我已经包含了足够的代码。

首先,检索并显示数据:

/*-------------------  DISPLAY ACCESSORIES ------------------*/
if(isset($_GET['table']) && $_GET['table'] === "accessories") 
{
    $table = 'accessories';      

    include '../includes/dbconnect.php';    

    try {
        $result = $db->query("SELECT * FROM $table");

        while($row = $result->fetch(PDO::FETCH_ASSOC)){

            $accessories[] = array(
                'id' => $row['id'],
                'buy_link' => $row['buy_link'],
                'img' => $row['img'],
                'item_number' => $row['item_number'],
                'name' => $row['name'],
                'description' => $row['description'],
                'laser_series' => $row['laser_series'],
                'laser_model' => $row['laser_model'],
                'quantity' => $row['quantity'],
                'price' => $row['price'],
            );
        }
    }   
    catch (PDOException $e)
    {
       $error = 'Error fetching data.' . $e->getMessage();
       include 'error.html.php';
       exit();
    }

    try {
        $sql2 = 'DESCRIBE accessories';
        $s2= $db->prepare($sql2);
        $s2->execute();
        $table_fields = $s2->fetchAll(PDO::FETCH_COLUMN);
    }
    catch (PDOException $e)
    {
        $error = 'Error fetching data from database.';
        include 'error.html.php';
        exit();
    }

    // Close database connection
    $db = null;

    // Display data on included page
    include 'display-accessories.html.php';
    exit();
}

然后,在用户希望编辑的行中,他单击编辑按钮。 这是html:

<form action="<?php echo htmlspecialchars($_SERVER['PHP_SELF']); ?>" method="post">
    <input type="hidden" name="id" value="<?php htmlout($accessory['id']); ?>"> 
    <button class="btn btn-default btn-sm" type="submit" name="action" value="edit_accessories">Edit</button>
</form>

单击编辑按钮将触发此php,但失败(不是本地)。 它不包含文件(路径正确;在同一文件夹中)。

/*-------------------  EDIT ACCESSORIES ------------------*/
if(isset($_POST['action']) && $_POST['action'] === "edit_accessories") 
{
    // Assign name of table being queried to variable
    $table = 'accessories';

    // Sanitize posted data
    $id = sanitize($_POST['id']);

    // Connect to database
    include '../includes/dbconnect.php';

    try {
        $sql = "SELECT * FROM $table WHERE id = :id"; 
        $s = $db->prepare($sql);
        $s->bindValue(':id', $id);
        $s->execute();
    }
    catch (PDOException $e)
    {
        $error = 'Error fetching data.' . $e->getMessage();
        include 'error.html.php';
        exit();
    }

    // Store single row result in $item associative array
    $item = $s->fetch(PDO::FETCH_ASSOC);  

    // Close database connection
    $db = null;

    // Display row content in form
    include 'edit-accessories-form.html.php';
    exit();
}

如果有人有任何想法为什么这行不通,我欢迎您的见解!

只需更改句子:

FROM:'../includes/dbconnect.php';

收件人:$ _SERVER ['DOCUMENT_ROOT']。'/ includes / dbconnect.php';

在服务器中,路径不能写为“ ../”,因为存在完全不同的服务器路径配置。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM