PHP 和 MySQL 图像一键操作脚本
我目前正在做一个项目,我想知道是否可以单击图像然后它会向数据库发送查询。因为我正在做一个关于在线菜单的项目。我将单击图像,然后将在数据库中发送查询,之后客户订单将出现在屏幕一侧。这可能吗?如果是这样怎么办?
I am currently doing a project, and I want to know if it's possible if I could click an image then it will send a query to the database. since I am doing a project about Online menu. where I will click the image then there'll be query to be sent in the database, and after that the customers order wil appear in the side of the screen. is this possible? if so how ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
对于如何做到这一点,您确实有多种选择。最基本的是将图像包围在链接标记中,如下所示:
然后您可以通过实际刷新来处理点击。或者,如果您不想刷新页面,也可以使用ajax 来处理。
在另一个 php 页面上完成您的工作。
You really have several options of how you want to do this. The most basic being to surround your image in a link tag like so:
You can then either handle the click with an actual refresh. Or, you can handle it with ajax if you don't want the page to refresh.
Do your work on another php page.
如果你需要通过ajax来做到这一点。假设您要在“itemdetails”div 中加载从服务器发送的内容。您可以将其指定为图像标签(使用jquery:
If you need to do this through ajax. Let's suppose you want to load the content sent from the server in the div 'itemdetails'. You can specify this as the image tag(using jquery:
对我来说最好的方法是使用 jquery,如下所示:
Javascript:
The php file ajaxOrder:
所以你的 html 应该是:
The best way of doing that for me is using jquery like this:
Javascript:
The php file ajaxOrder:
So your html should be: