有没有一种简单的方法可以用 PHP 处理表单?

发布于 2024-12-11 05:38:37 字数 203 浏览 0 评论 0原文

在 PHP 中处理表单一直让我头疼不已。主要是格式化;处理表单输入中的标点符号、操作数据库插入的字符串、从数据库检索时进行剥离等。

是否有一个简单的替代strip_slashes和所有这些垃圾的方法?我不想要像表单向导这样为您做所有事情的工具 - 我仍然想要高水平的定制。不过,如果有一个工具可以说“我希望这个文本字段连接到这个数据库字段。”,那么它就可以处理所有繁琐的工作。

Dealing with forms in PHP has always given me major headaches. Primarily formatting; handling punctuation inside a form input, manipulating strings for database insertions, stripping when retrieving from database, etc.

Is there an easy alternative to strip_slashes and all that junk? I don't want a tool like a form wizard that does everything for you - I still would like a high level of customization. What would be nice though is a tool that says "I want this text field to connect to this database field.", then it handles all that tedious work.

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

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

发布评论

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

评论(2

单身情人 2024-12-18 05:38:37

查找PHP PDO这使得它非常好处理所有数据库的事情。至于映射形式。 。 。您需要另一个应用程序(如果有现成的应用程序)来处理该问题。

Look up PHP PDO. It makes it quite nice to handle all of the database stuff. As for mapping forms. . . You'd need another application (if one exists out of the box) to handle that.

谁的年少不轻狂 2024-12-18 05:38:37

您应该研究专门为支持涉及用户输入的系统而设计的 PHP 框架。

就我个人而言,我使用过 CakePHP,它非常有用(尽管它确实倾向于假设您有一个相当简单的数据模型,并且您不介意从头开始创建它)。它是高度可定制的(您自己创建所有表单组件),如果您使用它的全部功能,它将处理斜杠和数据库字段以及所有其他内容。

其他框架也可用...

You should look into PHP frameworks which are specifically designed to support systems involving user input.

Personally I've used CakePHP and it's been very useful (though it does tend to assume you have a fairly simple data model and you don't mind creating it from scratch). It's highly customisable (you create all form components yourself) and if you use its full capabilities it will handle slashes and database fields and all the rest.

Other frameworks are available...

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