将 href 属性传递给另一个 php 页面

发布于 2024-10-19 23:16:13 字数 226 浏览 1 评论 0原文

.有点帮助大家..

我有一个index.php页面,其中包含标签,单击这些标签会打开picture.php。 .my picture.php 是一个根据 idno 从某个数据库检索图像的页面。

我想要做的是在我的锚标记上添加一个“idno”属性,当用户单击某个标记时,index.php 会将 idno 发送到我的 picture.php,以便 picture.php 知道要从哪个图像获取数据库。请帮忙!

.a little help guys..

I have an index.php page which contains tags which when clicked opens up picture.php.
.my picture.php is a page that retrieves images from a certain database depending on what is the idno.

.what i want to do is to add an "idno" attribute on my anchor tag that when the user clicks a certain tag the index.php sends the idno to my picture.php so that the picture.php knows what image to fetch from the database. help pls!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

亚希 2024-10-26 23:16:13

那么对于你的锚标签,你能做这样的事情吗?

<?php
    $url = "pictures.php?idno=" . idno;
    echo "<a href=\"" . $url . "\">Click Me</a>";
?>

现在,在您的 pictures.php 文件中,您可以像这样读取 ID:

$idno = $_GET['idno'];

唯一需要注意的是,在将输入传递给数据库查询之前,请确保对该输入进行清理,以便您可以不易受到 SQL 注入攻击。

So for your anchor tag, could you do something like this?

<?php
    $url = "pictures.php?idno=" . idno;
    echo "<a href=\"" . $url . "\">Click Me</a>";
?>

Now in your pictures.php file, you can read the ID like this:

$idno = $_GET['idno'];

The only thing to watch out for is to make sure you sanitize that input, before you pass it off to a database query so you aren't vulnerable to a SQL injection attack.

凉城凉梦凉人心 2024-10-26 23:16:13

您可以通过 GET 将参数发送到 picture.php

<a href="picture.php?id=894754093857">Blah!</a>

You can send the parameter to picture.php via GET

<a href="picture.php?id=894754093857">Blah!</a>
高冷爸爸 2024-10-26 23:16:13

您可以使用 GET 将 idno 传递给 pictures.php,

这样您的链接将如下所示:

<a href='/picture.php?idno=12345678'>My Picture Tag</a>

在 picture.php 中:

$idno = $_GET['idno']; 

确保在 MySQL 查询中使用 $idno 之前对其进行消毒。如果 idno 是一个数字,那么您还可以检查它是否是一个整数:

$isInt = is_int($idno); 

You could use GET to pass idno to pictures.php

so your link would look like this:

<a href='/picture.php?idno=12345678'>My Picture Tag</a>

In your picture.php:

$idno = $_GET['idno']; 

Make sure you sterilize $idno before using it in a MySQL query. If idno is a number, then you can also check if it's an integer:

$isInt = is_int($idno); 
﹂绝世的画 2024-10-26 23:16:13
<a href="picture.php?idno=<?php echo $idno ?>">Picture # <?php echo $idno ?></a>

弄清楚如何设置 $idno 留给OP作为练习。

<a href="picture.php?idno=<?php echo $idno ?>">Picture # <?php echo $idno ?></a>

Figuring out how to set $idno is left as an exercise to the OP.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文