An open API service indexing awesome lists of open source software.

https://github.com/diversen/mycurl

Simple Curl wrapper for most common usage
https://github.com/diversen/mycurl

Last synced: over 1 year ago
JSON representation

Simple Curl wrapper for most common usage

Awesome Lists containing this project

README

          

# mycurl

## Example

~~~.php
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();

~~~