2017 © Pedro Peláez
 

library zzcurl

Allows you to easily send post data.

image

opensourcediva/zzcurl

Allows you to easily send post data.

  • Monday, February 2, 2015
  • by marisiaweb
  • Repository
  • 1 Watchers
  • 0 Stars
  • 38 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

ZZCurl

Allows you to easily send post data., (*1)

Example

<?php

require 'vendor/autoload.php';

use Utility\Data;
use Utility\Post;

try {

    $data = new Data([
        'test_field' => 'test data',
        'test_field_2' => 'test data 2'
    ]);

    $post = new Post('http://www.webomg.com');
    $post->setData($data);

    $response = $post->send(); // Returns true if successful

} catch(Exception $exception) {
    echo $exception->getMessage();
}

The Versions

02/02 2015

dev-master

9999999-dev

Allows you to easily send post data.

  Sources   Download

The Development Requires

by Marisia

07/01 2015

v1.0.1

1.0.1.0

Allows you to easily send post data.

  Sources   Download

by Marisia

23/09 2014

v1.0.0

1.0.0.0

Allows you to easily send post data.

  Sources   Download

by Marisia