diversen/mycurl

Simple Curl wrapper for most common usage

1.0.1 2016-02-16 10:17 UTC

This package is auto-updated.

Last update: 2024-04-20 07:14:33 UTC


README

Example

include_once "vendor/autoload.php";
use diversen\mycurl;

$c = new mycurl('http://coscms/account/login/index');
$post = array (
    'email' => 'test',
    'password' => 'test',
    'submit_account_login' => 'Send');

$c->setPost($post);
$c->createCurl();

echo $c->getWebPage();