
04.02.2009, 00:17
|
|
Reservists Of Antichat - Level 6
Регистрация: 23.05.2008
Сообщений: 756
С нами:
9456866
Репутация:
979
|
|
PHP код:
$post = "name=john";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://site.com/script.php");
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
$out = curl_exec($ch);
echo $out;
Писал по памяти,могут быть ошибки.
|
|
|