生成简单的 HTML 页面?
好吧,我脑子里有一个想法,但我不确定你是否能做到。我想要在其中填写包含一些信息的表单,当我单击“提交”时,它将从模板创建一个新页面,该模板会使用表单中的信息填充一些空白。因此,除了页面上的一些图片和名称之外,每个页面看起来都一样。 我想知道最好的方法是什么?
Okay I have an idea in my head, but I am not sure if you can even do it or not. I want to have where I can fill out a form with some information and when I click submit it will create a new page from a template that fills in some blanks with the information from the form. So every page will look the same except a few pictures and the name on the page.
I am wondering what is the best way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个有点……复杂的问题。
这取决于您有多少经验以及您拥有哪些可用资源。最简单的方法是使用 PHP 脚本或类似脚本,用提交的表单数据填充模板中的空格。为此,您需要访问网络服务器。
如果您无法访问 Web 服务器,您可以使用 javascript 客户端生成页面,我建议使用像 jQuery 这样的库。
链接
这些应该可以让您了解您需要了解的内容。
This is a bit of a... complex question.
It depends on how much experience you have, and what resources you have available. The easiest way would be to use a PHP script or similar that fills in the spaces in the template with the submitted form data. For that you need access to a web server.
If you don't have access to a web server, you could generate a page using javascript client side, I suggest using a library like jQuery.
Links
Those should get you what you need to know.