gpt4 book ai didi

PHP 页面在我的本地主机上加载,但在我的网络主机中未加载

转载 作者:行者123 更新时间:2023-11-29 16:05:25 26 4
gpt4 key购买 nike

我正在我的网络托管上上传我的网站,但其中一页未加载(空白)。在我的本地主机服务器 wamp 上,此页面每次都是由数据库中的每个 id 生成的。数据库连接和网络服务器的设置正确,因为发布系统正在运行,每次提交都会插入到我的数据库中。怎么了?

include 'https://site.ro/includes/config.php';
include 'https://site.ro/includes/connection.php';
if (!isset($_GET['anunt']) || empty($_GET['anunt']) || !is_numeric($_GET['anunt'])) {
$errors[] = 'Error';
} else {
$anunt_id = $_GET['anunt'];

$sql = 'SELECT *
FROM date_anunt
WHERE anunt = ?';

$statement = $connection->prepare($sql);
$statement->bind_param('i', $anunt_id);
$statement->execute();
$result = $statement->get_result();
$anunt = $result->fetch_all(MYSQLI_ASSOC);
$result->close();
$statement->close();
if (!$anunt) {
$errors[] = 'Acest anunt nu exista!';
} else {
$anunt = $anunt[0];

$marca = $anunt['marca'];
$model = $anunt['model'];
$caroserie = $anunt['caroserie'];
$an = $anunt['an'];
$km = $anunt['km'];
$stare = $anunt['stare'];
$pret = $anunt['pret'];
$descriere = $anunt['descriere'];

$sql = 'SELECT *
FROM imagini_anunt
WHERE image_id = ?';

$statement = $connection->prepare($sql);
$statement->bind_param('i', $anunt_id);
$statement->execute();
$result = $statement->get_result();
$images = $result->fetch_all(MYSQLI_ASSOC);
$result->close();
$statement->close();
$connection->close();
}
}
?>

最佳答案

include 'https://site.ro/includes/config.php';
include 'https://site.ro/includes/connection.php';

include 旨在包含并评估指定的 PHP 文件。如果您在本地获取它,它可以像 PHP 一样进行处理 - 如果您通过完整的 URL 获取它,您将获得生成的 HTML,这可能会导致错误。

尝试仅包含/config.php,看看是否有效。

关于PHP 页面在我的本地主机上加载,但在我的网络主机中未加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55786789/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com