Skip to content

Commit

Permalink
Updated README
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean Huber committed May 7, 2008
1 parent 6327c4f commit fd0d9dc
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions README.markdown
@@ -1,12 +1,12 @@
Curl, CurlResponse
==================

Author: Sean Huber [http://github.com/shuber](http://github.com/shuber)
Sean Huber [http://github.com/shuber](http://github.com/shuber)

Description
-----------

A basic CURL wrapper written in PHP (see [http://php.net/curl](http://php.net/curl) for more information about the libcurl extension for PHP)
A basic CURL wrapper for PHP (see [http://php.net/curl](http://php.net/curl) for more information about the libcurl extension for PHP)


Installation
Expand Down Expand Up @@ -38,7 +38,8 @@ Examples

$response = $curl->get('google.com?q=test');

$response = $curl->get('google.com?q=test', array('some_variable' => 'some_value')); # The Curl object will append '&some_variable=some_value' to the url
# The Curl object will append '&some_variable=some_value' to the url
$response = $curl->get('google.com?q=test', array('some_variable' => 'some_value'));

$response = $curl->post('test.com/posts', array('title' => 'Test', 'body' => 'This is a test'));

Expand Down

0 comments on commit fd0d9dc

Please sign in to comment.