Har*_*oly -4 html javascript php ajax jquery
我有这个表格
您的电子邮件如何提交此数据并转到另一页(使用任何标记的语言)?请帮忙.
如果我的问题是对的,你的回答是:
您的提交按钮必须如下:
<form method="POST" action="file.php">
<!-- Whatever data you want to submit -->
<input type="submit" value="Submit">
</form>
Run Code Online (Sandbox Code Playgroud)
你的PHP file.php必须是:
<?php
if(isset($_POST['submit']))
{
//Do all the submission part or storing in DB work and all here
header('Location: whateverpath.php');
}
?>
Run Code Online (Sandbox Code Playgroud)
如果这是您想要的,请告诉我
| 归档时间: |
|
| 查看次数: |
42626 次 |
| 最近记录: |