Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在使用 SQL 和 PHP 做图库时遇到了问题。我有 3 个 .php 文件,根据我在上一页中选择的内容,我需要从同一个 SQL 数据库中获取不同类型的信息。
我已经通过使用
<a href='page3.php?name=$row[name]'>
链接中的东西,当您将其链接到另一个页面时效果很好。但是现在我需要在同一页面上使用标题,之后它似乎丢失了信息。
有谁知道如何在将标题用于同一页面时保留此信息?或者最好的不同方法是什么?
采用
<a href='page3.php?name=<?php echo $row['name']; ?>'>
使用以下命令从 page3.php 获取数据:
$name = $_GET['name'];