gpt4 book ai didi

php - 在第 26 行获取错误 : Fatal error: Call to undefined function: () in/homepages/44/d1895123746/htdocs/cll/index. php。如何修复?

转载 作者:太空宇宙 更新时间:2023-11-03 12:32:08 26 4
gpt4 key购买 nike


我想从我的 MySQL 数据库接收数据。首先,这是代码:

<!DOCTYPE html> 
<html>
<head>
<meta charset="UTF-8">
<title>Filmliste</title>
<link href="http://code.jquery.com/mobile/1.0a3/jquery.mobile-1.0a3.min.css" rel="stylesheet" type="text/css"/>
<script src="http://code.jquery.com/jquery-1.5.min.js" type="text/javascript"></script>
<script src="http://code.jquery.com/mobile/1.0a3/jquery.mobile-1.0a3.min.js" type="text/javascript"></script>
</head>
<body>

<div data-role="page" id="page">
<div data-role="content">
<ul data-role="listview">
<?php
$db = mysql_connect('12345.db.1and1.com', 'dbo42545132301', 'password', 'db4255412601') or die('Fail');
$sql = "SELECT * FROM movielist";
$ergebnis = mysql_query($sql);
while($row = mysql_fetch_object($ergebnis))
{
?>
<li><a href="/detail.php"><?php $row->cover; ?>&nbsp;<?php $row->titel; ?></a></li>
<?php

}

$mysql_close($db);
?>
</ul>
</div>
</div>


</body>
</html>

如果我在我的浏览器中加载它,我会得到这个: fatal error :调用未定义的函数:() in/homepages/44/d18421343246/htdocs/project/index.php 第26行

最佳答案

您在 mysql_close() 之前使用 $

$mysql_close($db);

应该是

mysql_close($db);

注意:Please, don't use mysql_* functions in new code .它们不再维护 and are officially deprecated .

所以使用 PDOMySQLi(IMO PDO 是可行的方法)

关于php - 在第 26 行获取错误 : Fatal error: Call to undefined function: () in/homepages/44/d1895123746/htdocs/cll/index. php。如何修复?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14912443/

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