gpt4 book ai didi

php - 从数据库中选择不工作

转载 作者:搜寻专家 更新时间:2023-10-30 22:12:29 25 4
gpt4 key购买 nike

谁能看到这段代码中的错误,它在我的本地主机上有效,但在实时服务器上无效

<?
$query = "select * from mytable";
$user_result = mysql_query($query) OR die(mysql_error());

while ($user_array = mysql_fetch_assoc($user_result)) {


echo "<table CELLPADDING=10 border =1 >";
echo "<tr>";
echo "<td>".$user_array['email']."</td>";
echo "<td>".$user_array['firstname']."</td>";

echo "</tr>";
echo "</table>";

}

mysql_close();
?>

它只是简单地显示文本 ""; echo “”; echo "".$user_array['email'].""; echo "".$user_array['firstname'].""; echo “”; echo “”; } mysql_close(); ?> "

最佳答案

您正在使用短标签 <? ?> ,为此您需要在 php.ini 文件中启用 short_open_tag。服务器可能将该变量设置为 false。这是 documentation on opening and closing tags .将它们更改为

<?php    ?>

关于php - 从数据库中选择不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23140941/

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