有人可以给我一个 php“匿名忏悔”的概述吗?脚本?

发布于 2024-10-16 02:04:02 字数 201 浏览 3 评论 0原文

我不需要知道每一个细节,我会做自己的研究,但如果我想编写一个脚本,允许网站的匿名访问者在网站上发布供词供所有人查看,则无需“批准”。 . 流程,带有注释和验证码。它还需要有一个用于删除评论和“忏悔”帖子的后端 - 概述我需要在 php 中做什么/学习才能实现这一点。我对php有基本的了解,足以修改现有的脚本。如果有任何我可以以此为基础的脚本,我很想知道它叫什么。

谢谢。

I don't need to know every minute detail, I'll do my own research, but if I wanted to write a script that allowed anonymous visitors to a site to post confessions on the site for all to see, no 'approval'.. process, with comments, and captcha. It'd also need to have a backend for deletions of comments and 'confession' posts - what would be an overview of what I'd need to do/learn in php to achieve that. I have a basic understanding of php, enough to modify existing scripts. IF there is any script out there that I could base this on, I would love to know what its called.

Thanks.

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

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

发布评论

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

评论(2

So要识趣 2024-10-23 02:04:03

这些只是基本的 CRUD 操作,几乎每个动态网站都会这样做。无论您称它们为评论、博客文章、论坛帖子还是忏悔,它都只是创建、读取、更新和删除数据库中的行表示的一些对象。

一本好的 PHP 初学者书籍将引导您构建可以完成所有这些事情的东西(博客、CMS 等)...我推荐这本书 使用 PHP 和 PHP 构建您自己的数据库驱动网站MySQL

Those are just basic CRUD actions virtually every dynamic website does. Whether you call them comments or blog posts or forum threads or confessions, it's just creating, reading, updating and deleting some objects represented by rows in a database.

A good beginners PHP book will walk you through building something that does all those things (a blog, a CMS, etc)... I recommend the book Build Your Own Database Driven Website With PHP & MySQL.

前事休说 2024-10-23 02:04:03

我不建议没有经验的人从头开始进行这样的编程。预打包的解决方案(例如 Wordpress)结合第三方模板和插件可能会更好地满足您的需求。插入。

如果您想自己学习,请购买一本 PHP/MySQL 书籍,从项目的最小版本开始,然后逐步升级。

Programming something like this from scratch is not something I would recommend for the inexperienced. Your needs would probably be better served by a pre-packaged solution such as Wordpress, combined with third-party templates and plug-ins.

If you'd like to learn to do it yourself, buy a PHP/MySQL book, start with a minimal version of your project, and work your way up.

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