如何将一个HTML表单提交给多个php文件?

时间:2011-03-10 20:05:10

标签: php html

我有一个HTML表单,我需要提交到一个php文件,将其添加到数据库,以及将其添加到在线CSV文件的现有php文件。

有什么想法吗?

3 个答案:

答案 0 :(得分:4)

创建一个新的php文件,如下所示:

<?php

  include('form_handler_1.php');
  include('form_handler_2.php');

?>

答案 1 :(得分:1)

使用$ _POST或$ _GET数组调用另一个文件。

例如,在您的mysql获取$ _POST并将$ _GET提交到下一个文件之后。

文件1:

$name = $_POST['name'];
$address = $_POST['address'];
## put here your mysql query and connect
## end query

##submit the values as variables to the other script

$url = "http://www.mysite.com/seconfile.php?name=".$name."&address=".$address;
file_get_contents ($url);

第二档:

$name = $_GET['name'];

卷曲也适合或fopen或文件。

你可以通过在数组中使用foreach循环创建网址,无休止地缩短编码并缩短编码。

编码但未经过测试

答案 2 :(得分:0)

您可以将它发送到您的数据库php文件,然后使用curl将请求发送到第二个php文件。

See this link for instructions on how to use curl:)