Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

guzzlehttp form data

$client = new GuzzleHttpClient();
$response = $client->request('POST', 'http://www.example.com/user/create', [
    'form_params' => [
        'email' => 'test@gmail.com',
        'name' => 'Test user',
        'password' => 'testpassword',
    ]
]);
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #guzzlehttp #form #data
ADD COMMENT
Topic
Name
5+5 =