{if...else} 如果 mysql 字段等于 ex.1 如何显示图像
我有一个问题: 我有一个 mysql 表,其中包含诸如 pages_viewed
之类的值,每次用户访问页面(例如 1、2、3 等)时,该表都会递增。 我的问题很简单,当字段等于或大于 1 时如何显示图像?
就像
select pages_viewed from table;
if field pages_viewed > 1 than echo images/image.png
原谅我的 php 一样,我不太擅长它。
我一直在这里和其他论坛上阅读,但我能找到的只是 drupal 或 wordpress。
i have a question:
i have a mysql table that has values such as pages_viewed
that increments every time a user accesses a page such as 1,2,3 etc.
My question is simple how do i display an image when the field equals or is more than 1?
like
select pages_viewed from table;
if field pages_viewed > 1 than echo images/image.png
pardon my php i'm not too good at it.
i've been reading here and in other forums but all i can find is drupal or wordpress.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
类似的东西
something like
这里基本上就是除了数据库连接、表名、字段名之外的所有内容。
Here is everything basically short of database connection, table name, field name.