Skip to content

Instantly share code, notes, and snippets.

@legendar
Created October 23, 2009 09:42
Show Gist options
  • Save legendar/216779 to your computer and use it in GitHub Desktop.
Save legendar/216779 to your computer and use it in GitHub Desktop.
<?php
/* получаем HTML по ссылке */
include('softenCurl.php');
$curlObject = new softenCurl();
$contents = $curlObject->get('http://google.com');
// в $contents будет HTML-код страницы
?>
<?php
/* получаем HTML по ссылке с отправкой формы */
include('softenCurl.php');
$curlObject = new softenCurl();
$contents = $curlObject->sendForm('http://google.com', array(
'id' => 123,
'name' => 'xxx',
));
// в $contents будет HTML-код страницы
?>
<?php
/* отправляем форму по ссылке */
include('softenCurl.php');
$curlObject = new softenCurl();
$curlObject->sendForm('http://google.com', array(
'id' => 123,
'name' => 'xxx',
));
// отправляет POST-методом
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment