gpt4 book ai didi

php - 运行php代码时出现问题

转载 作者:行者123 更新时间:2023-12-03 09:09:53 24 4
gpt4 key购买 nike

当我安装此脚本时,出现此错误error
其中具有congig.php文件line这一行

你能帮我解决错误吗

    <?php
error_reporting(E_ALL);
ini_set('display_errors', '1');

$host = "localhost"; // your mysql server address
$user = "root"; // your mysql username
$pass = ""; // your mysql password
$tablename = "ses"; // your mysql table

session_start();
$data = null;
if(!(@mysql_connect("$host","$user","$pass") && @mysql_select_db("$tablename"))) {
?>
<html>
MSQL ERROR
<?
exit;
}

include_once 'functions.php';
require_once "includes/pluggable.php";
foreach( glob("plugins/*/index.php") as $plugin) {
require_once($plugin);
}

hook_action('initialize');

$site = mysql_fetch_object(mysql_query("SELECT * FROM settings"));
?>

最佳答案

你有这个:

     ?>
<html>
MSQL ERROR
<?
exit;

您需要这样:
     ?>
<html>
MSQL ERROR
<?php
exit;

除非在php.ini中启用了short_open_tag,否则 <?不是有效的开始标记。

关于php - 运行php代码时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35107720/

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