gpt4 book ai didi

php - 函数名必须是字符串。无法使用行显示数据库中的数据

转载 作者:搜寻专家 更新时间:2023-10-30 23:10:53 24 4
gpt4 key购买 nike

这是我的事件编码。我希望它在我的系统中显示事件属性。错误显示为

Fatal error: Function name must be a string in D:\XAMPP\htdocs\system\bulletin.php

函数名必须是字符串是什么意思?错误在哪里?我应该更改哪一行?

<th scope="col"><center><strong>Event ID</strong></center></th>
<th scope="col"><center><strong>Event</strong></center></th>
<th scope="col"><center><strong>Description of the Event</strong></center></th>

<?php
require 'database.php';

$qry = "SELECT * FROM bulletin ORDER BY event_id DESC";
$result = mysql_query($qry) OR die (mysql_error());

while($row = mysql_fetch_assoc($result())){
$event_id = $row['event_id'];
$event = $row['event'];
$venue = $row['venue'];
$daydropdown_start = $row['day1'];
$monthdropdown_start = $row['month1'];
$yeardropdown_start = $row['year1'];
}


<td><? echo $row['event_id']; ?></td>
<td><? echo $row['event']; ?></td>
<td><br>Venue:<?php echo $row['venue']; ?></br>
<br> Date: <?php echo $row['day1'] / $row['month1'] / $row['year1']; ?> </br></td>

最佳答案

我猜你的错误是在这一行 while($row = mysql_fetch_assoc($result())){

$result 不是一个函数,而是一个变量。改成

while($row = mysql_fetch_assoc($result)){,你应该很好

关于php - 函数名必须是字符串。无法使用行显示数据库中的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20460820/

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