我是PHP的新手。我希望通过邮寄方式将数据从一个页面发送到另一个页面。
if(isset($_REQUEST['submit']))
{
header("location:nextpage.php");
//here i want to send data coming from my text box's by post function
}
答案 0 :(得分:2)
您应该首先定位正确的页面。
<form action="your-processing-script.php" method="post">
请记住,操作是相对的,因此根据您的文件结构,您可能需要在文件网址前加斜杠以防止混淆。
/your-processing-script.php