gpt4 book ai didi

php - 使用 php 和 mysql 标记云 - 如何使用 mysql 列名称链接新页面

转载 作者:行者123 更新时间:2023-11-28 23:16:04 24 4
gpt4 key购买 nike

我会尽我最大的努力来表达这一点。我已经添加了指向我需要帮助的页面的链接以及它们的说明。我是 php 新手,需要帮助,谢谢。

P.S. 
I would like to keep the code I have unless you have a better one.

我的问题 --- 我用我的数据库表中的单词创建了按钮。我需要知道的是如何为您点击的单词添加链接按钮,此链接将打开我的 articlestagresults.php 页面并显示所选单词并根据列表列出文章到他们从标签云中选择的词。请查看我的两个网页,看看我在做什么。这是我的两页,其中有注释,以更好地表达我的意思。 https://livinghisword.org/articlestagresults.php ---- https://livinghisword.org/articlestagcloud.php 在此处输入代码 这是 articlestagcloud.php 的代码 --- 下面

$sql = mysqli_query($db_conx, "SELECT word FROM articles GROUP BY word ORDER BY word ASC");

while ($row = mysqli_fetch_array($sql)) {
$word = $row['word'];

ksort($word);

echo "<div class='cloudbox tag'>$word</div>";
}

非常感谢您提供的所有帮助!

最佳答案

你只需要像这样将单词包裹在 anchor 标签中

echo "<div class='cloudbox tag'><a href = 'articlestagresults.php?word=" . $word . "'> " . $word . "</a></div>";

articlestagresults.php 中,您可以通过 print_r($_GET['word']); 简单地获取单词页面。

articlestagresults.php

$word = $_GET['word'];
$sql = mysqli_query($db_conx, "SELECT * FROM articles WHERE word = '$word'");
while ($row = mysqli_fetch_array($sql)) {
print_r($row);// It will contain the row data
//SHOW the HTML
}

关于php - 使用 php 和 mysql 标记云 - 如何使用 mysql 列名称链接新页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43833978/

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