如何使用PHP& amp;创建表单的预览按钮?的MySQL。
答案 0 :(得分:3)
<script language="JavaScript">
<!--
function formpreview(form) {
form.target='_blank';
form.action='preview.php';
form.submit();
}
//-->
</script>
<input type="button" value="preview" onclick='formpreview(this.form)'>
然后在$_POST
中使用preview.php
数组值来填充模板
答案 1 :(得分:1)
当表单提交到PHP脚本时,该表单中的信息将自动提供给脚本。有许多方法可以访问此信息。规范是将其直接插入数据库。
如果我理解正确,那么您应该能够通过GET或POST方法直接获取用户输入数据。
答案 2 :(得分:1)
通过GET或POST方法直接获取用户输入数据。
然后创建2“如果”循环像智慧
if($_POST['preview'])// after completing the fields preview is clicked.
{
//display the preview.... and provide a submit button in this preview
}
注意:提交也应该b 可得到 在提供INPUT的形式中,即应该有三个按钮, 提交, 预览并重置..
if($_POST['submit'])
{
//Finally,submit the values into the database..
//if needed redirect to the page of final display of form values...
}