如何将快速安全联系表单中的输入写入 MySQL 数据库?
我正在使用快速安全联系表单的 PHP 脚本版本(不是 Wordpress): http://www .fastsecurecontactform.com/download-php-script。它工作得很好,但我想知道如何将表单数据写入 MySQL 数据库。对于 Wordpress 版本,有一个数据库扩展 http:// /wordpress.org/extend/plugins/contact-form-7-to-database-extension/,但不适用于 PHP 脚本。任何关于如何将 PHP 脚本版本输入写入数据库的想法将不胜感激!
I'm using the PHP script version (not Wordpress) of Fast Secure Contact Form: http://www.fastsecurecontactform.com/download-php-script. It works great, but I'm wondering how I would go about writing the form data to a MySQL database. For the Wordpress version, there is a Database extension, http://wordpress.org/extend/plugins/contact-form-7-to-database-extension/, but not for the PHP script. Any thoughts on how I could write the PHP script version inputs to a database would be much appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您提供的网站链接有一些提示部分,讨论将数据从表单发送到另一个页面:
http://www.fastsecurecontactform.com/sending-data-by-query-string
在表单中输入数据后,您也许可以将该数据发送到另一个
PHP 页面,然后可以将数据保存到
MySQL
数据库。The website link you provided has some tip sections that discuss sending the data from the form to another page:
http://www.fastsecurecontactform.com/sending-data-by-query-string
After entering the data in the form, you might be able to then send that data to another
PHP
page which can then save the data to aMySQL
database.