gpt4 book ai didi

php - 通过mysql表的fetchRow创建数组的变量

转载 作者:行者123 更新时间:2023-11-29 12:59:28 25 4
gpt4 key购买 nike

我试图通过使用 $info[per1] 的值从 MySQL 数据库中的类表中获取行来创建名为 $period1 的变量。我使用以下代码来进行 MySQL 调用。我已正确连接,我能够

我的代码...

$info = $db->fetchRow("select * from `profiles` where `username` =?", array($logged_in));
$period1 = $db->fetchRow("select * from `classes` where `name` =?", array($info[per1]));

以下内容打印网页设计,并且是我用来搜索类(class)表的内容。

<?php echo $info[per1]?>

类别表

id  name           teacher   cost   
1 Web Design Benrud 999

echo 结果

<?php echo $period1?>

返回:数组

<?php echo $period1[1]?>

返回:空白

有什么建议吗?
感谢您的帮助!

最佳答案

我尝试使用表列名称,而不是使用 [0] 或 [2] 或 [3]。以下工作有效

<?php echo $period1[teacher]?>

关于php - 通过mysql表的fetchRow创建数组的变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23553163/

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