0

我想制作一个使用 curl 提交表单的 php 脚本。我已经看到了有关此的其他问题,并尝试了其他答案,但我得到了相同的结果

我有一个简单的表单来回显提交的值

<form action="form.php" method="GET">
<input type="text" name="name"/>
<input type="submit">
</form>

<?PHP
if (! empty($_GET['name'])){
   echo 'Hello, ' . $_GET['name'];
}
?>

这是卷曲脚本

$ch = curl_init();

  curl_setopt($ch, CURLOPT_URL, "http://www.mydom.com/form.php"); 
  curl_setopt($ch, CURLOPT_POST, true);
  curl_setopt($ch, CURLOPT_POSTFIELDS, array(
  'name' => 'Aname',
  'submit' => 'submit'
  ));
  curl_setopt($ch, CURLOPT_HEADER, false);
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

  $result = curl_exec($ch);
  echo "$result";

回显的结果只是没有“你好和提交值”的表单

4

1 回答 1

2

这不是因为这条线吗

if (! empty($_GET['name'])){
   echo 'Hello, ' . $_GET['name'];
}

您正在向页面发送 POST 请求,但您正在寻找 GET 数据。

编辑被打败了答案>.<

于 2013-04-09T16:06:41.287 回答