PHP& MySQL预览按钮问题

时间:2010-05-05 04:54:06

标签: php mysql

如何使用PHP& amp;创建表单的预览按钮?的MySQL。

3 个答案:

答案 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方法直接获取用户输入数据。

阅读PHP Documentation for Variables from External Sources

答案 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...
}