有没有更好的方法来处理 PHP 中的表单
我讨厌在 PHP 中使用表单,这总是给我带来问题。就像格式化一样;处理表单输入中的标点符号、操作数据库插入的字符串等等。我也不喜欢为你做所有事情的表单向导 - 但我仍然想要高水平的定制。帮助?
I hate working with forms in PHP has always given me problems. As in formatting; handling punctuation inside a form input, manipulating strings for database insertions and so on. I also don't like that the form wizard that does everything for you - but I still would like a high level of customization. Help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 PHP 框架,例如 Zend。它有内部表单处理解决方案。
Use PHP framework like Zend. It has internal form handling solution.
有人向我建议 PDO(PHP 数据对象): http://php.net/manual/ en/book.pdo.php 。我还没有检查过,但看起来很有希望。
Somebody suggested PDO (PHP Data Objects) to me : http://php.net/manual/en/book.pdo.php . I have yet to check it out, but looks promising.