0

我正在尝试向具有指向 tcl 脚本的表单的站点发送 POST 请求。我可以在页面的源代码中看到 -

<FORM method=post action=<script>.tcl name=form1 

我尝试编写一个发送请求的 php 脚本

$url = '<url>/<script>.tcl';
$data = array('Username' => ... , 'Password' => ...);
$options = array('http' => array('method'  => 'POST','content' => http_build_query($data)));
$context  = stream_context_create($options);
$result = file_get_contents($url, false, $context);

var_dump($result);

但我收到:file_get_contents(..) - 无法打开流:HTTP 请求失败!HTTP/1.0 500 内部服务器错误

我是新来的,所以我很感激你的帮助。谢谢。

4

1 回答 1

1

看起来像是cURL的工作。

例如:

<?php

$url = '<url>/<script>.tcl';
$data = array('Username' => ... , 'Password' => ...);

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));

// Return the response...
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

$response = curl_exec($ch);

curl_close ($ch);

echo $response;
于 2012-10-26T09:18:59.640 回答