gpt4 book ai didi

PHP - 将数据库 ID 附加到变量

转载 作者:行者123 更新时间:2023-12-01 00:37:04 25 4
gpt4 key购买 nike

我需要实现的目标:我正在根据项目 ID 使用来自 mySQL 的数据填充 div。我需要创建要调用到 div 中的变量,例如 $tip_ + $id 结果:

$tooltip_1
$tooltip_2
$tooltip_3

到目前为止我做了什么:

$query = 'SELECT * FROM top_tips WHERE type =  "aw"';
$result = mysqli_query($link, $query);

while ($row = mysqli_fetch_row($result)) {
$tip_ID = $row[0];
$tip_text = $row[2];
$tip_link = $row[3];

$tooltip = "<div class='tooltip-close'><a href='#' class='close'>&times;</a></div>" .$tip_text . " <a href='" .$tip_link . "'>read more ...</a>";

echo $tooltip;
}

我被困在哪里:什么是最有效的输出 $tooltip + $tip_id 的方法,以便可以将变量调用到相应的 div 中?

最佳答案

你会这样做:

while ($row = mysqli_fetch_row($result)) {
$tip_ID = $row[0];
$tip_text = $row[2];
$tip_link = $row[3];

$tooltip = "tooltip_{$tip_ID}";

$$tooltip = "<div class='tooltip-close'><a href='#' class='close'>&times;</a></div>" .$tip_text . " <a href='" .$tip_link . "'>read more ...</a>";

echo "tooltip_{$tip_ID}";
}

这将为您提供 $tooltip_1、$tooltip_2 等变量。也就是说,我建议您为此使用数组。

关于PHP - 将数据库 ID 附加到变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46224032/

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