我正在使用 PHP cURL 发送相同的数据。但我在文本区域中使用 "\n" 字符并打印"Empty reply from server"。除非我使用“\n”,否则它正在工作。
例如:
<form action="gonder.php" method="post">
<textarea name="content" rows=23 cols=70></textarea>
<input class="button" type="submit" value="Kaydet">
</form>
还有我的 gonder.php 文件:
<?php
if($_POST['content'] != ""){
$ch = curl_init('http://address/page.php');
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, 'bilgi='.$_POST['content']);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$result = curl_exec($ch) or die(curl_error($ch));
header("Location: index.php?olay=2");
}
?>
附加信息:我的文件末尾有单引号。
我怎么解决这个问题?
veriler.txt:
araba
ev
dükkan
mağaza
veriler.txt 在另一台服务器上,我想用 post 方法用 textarea 重写它