我想将textarea的内容发送到这个网站,但我总是得到的是找不到的动作或网站的代码..
$url = "http://www.browxy.com/";
function get_data($url , $data) {
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
$res = curl_exec($ch);
if($res){
return $res;
}
else {
return false;
}
curl_close($ch);
}