PHP/MYSQL 创建类似帖子类型的脚本(类似图像)
我是使用 mysql/phpmyadmin 的初学者,以前从未使用过 cms。我试图弄清楚如何添加“类似帖子”类型脚本 - 但我不想显示帖子,而是想在查看网站的每个项目页面时显示一些类似的图像(类似项目)。
我的网站设置相当简单:
- 主 html 页面
- 配置文件 html 页面
- 投资组合 php 页面 ->具有缩略图,其中包含指向 php 生成的 url 项目页面的链接
- 项目页面 ->一个动态 php 页面,可从分页
- 联系 html 页面生成页面。
项目 php 页面有一个 jquery 幻灯片、项目标题和项目概述文本。该页面使用三个 SQL 数据库表来存储数据(幻灯片图像/文本、用于分页的页面 ID 和一个用于标准化),并使用分页来更改数据,为每个项目创建一个页面。
我真的很感激任何关于如何使用 sql 来做这件事的想法/意见,或者最好使用 CMS(如果是这样,你知道有一个非常简单的适合我的网站设置的吗?)。
I am a beginner at using mysql/phpmyadmin, and have never used a cms before. I'm trying to get my head around how I could possibly add a 'similar posts' type script - but instead of showing posts, I would like to show some similar images (similar projects) when viewing each project page of my website.
My website setup is fairly simple:
- main html page
- profile html page
- portfolio php page -> has thumbnail images with links to php generated url project pages
- project page -> a dynamic php page that generates pages from pagination
- contact html page.
The project php page has a jquery slideshow, project title and project overview text. The page uses three sql database tables for the data (slideshow images/text, page id for the pagination and one for normalisation), and uses pagination to change the data, creating a page for each project.
I'd really appreciate any ideas/opinions on how I could go about doing this - with sql, or am better off using a CMS (if so, do you know of a really simple one that could suit my website setup?).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您主要想知道如何确定相似性,那么您可以使用 MySQL 中的文本搜索。如果您想麻烦地构建标记数据库架构,我也找到了此页面。前者更简单,但如果您想练习连接,后者非常有用。
If you're mainly wondering how you determine similarity, then you can do that with a text search in MySQL. I also found this page if you want to go to the trouble of building a tagging database schema. The former is simpler, but the latter is a really useful if you want to practice joins.