带标题的Php post函数()

时间:2013-02-02 00:03:12

标签: php post

我是PHP的新手。我希望通过邮寄方式将数据从一个页面发送到另一个页面。

if(isset($_REQUEST['submit']))
{

header("location:nextpage.php");
//here i want to send data coming from my text box's by post function
}

1 个答案:

答案 0 :(得分:2)

您应该首先定位正确的页面。

<form action="your-processing-script.php" method="post">

请记住,操作是相对的,因此根据您的文件结构,您可能需要在文件网址前加斜杠以防止混淆。

/your-processing-script.php