我对表单有点问题。我需要将其信息发送到2个不同的页面,用于两种不同的用途。其中一个页面将显示在表单中插入的内容,另一个页面将使用表单的标题作为另一页面的链接。
我正在使用的代码如下。现在,它只需要表单信息并在View.php页面中显示它。
我很确定我必须在这里使用一些PHP,但我没有想法。
<html>
<head>
<title>!!!!Protótipo de Formulario de Noticia!!!!</title>
<style>
textarea{
resize:none;
}
</style>
</head>
<body>
<form method="post" action="View.php">
<p>Titulo: <input type="text" name="Titulo" required/></p>
<p>Digite o texto da noticia abaixo:</p>
<textarea rows="10" cols="50" name="Noticia" required></textarea>
<br>
<input type="submit" value="Publicar" onsubmit="location.href='View.php;'" />
</form>
</body>
</html>
答案 0 :(得分:0)
你不需要
onsubmit="location.href='View.php;'
最简单的方法是提交到一个充当控制器的页面。它可以处理数据,并选择用于显示下一页的模板。
如果需要,您还可以使用会话或http查询参数(url?id = 1234)在页面之间传递数据