将 href 属性传递给另一个 php 页面
.有点帮助大家..
我有一个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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
那么对于你的锚标签,你能做这样的事情吗?
现在,在您的
pictures.php
文件中,您可以像这样读取 ID:唯一需要注意的是,在将输入传递给数据库查询之前,请确保对该输入进行清理,以便您可以不易受到 SQL 注入攻击。
So for your anchor tag, could you do something like this?
Now in your
pictures.php
file, you can read the ID like this: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.
您可以通过 GET 将参数发送到
picture.php
You can send the parameter to
picture.php
via GET您可以使用 GET 将 idno 传递给 pictures.php,
这样您的链接将如下所示:
在 picture.php 中:
确保在 MySQL 查询中使用 $idno 之前对其进行消毒。如果 idno 是一个数字,那么您还可以检查它是否是一个整数:
You could use GET to pass idno to pictures.php
so your link would look like this:
In your picture.php:
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:
弄清楚如何设置 $idno 留给OP作为练习。
Figuring out how to set $idno is left as an exercise to the OP.