PHP curl没有发布到正确的字段

时间:2014-06-28 03:13:54

标签: php curl

我使用curl检索邮件请求中的某些数据,我对这些字段有点麻烦,因为它似乎没有正确地发布到正确的字段。表单只包含一个文本区域和一个提交按钮。

<form action="other.php" name="form1" id="formID" method="post">
<textarea rows="1" cols="1" id="txtareaID" name="txtAreaName"></textarea>
<input type="submit" id="btnID" name="btnName" value="btnValue" title="btnTitle">

这是字段变量:

$this->fields = "txtAreaName=". $this->num . "&btnName=btnID";

我不完全确定在这种情况下如何识别提交按钮..

这里是curl数组:

array(
  CURLOPT_URL   =>  $this->address,
  CURLOPT_POST =>   true,
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_POSTFIELDS => $this->fields
);

1 个答案:

答案 0 :(得分:1)

提交按钮应为:

"&btnName=btnValue"

=右侧的值应该是该按钮的value=属性中的值。