02/02
2015
dev-master
9999999-devAllows you to easily send post data.
The Development Requires
by Marisia
Wallogit.com
2017 © Pedro Peláez
Allows you to easily send post data.
Allows you to easily send post data., (*1)
<?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();
}
Allows you to easily send post data.