Jump to content

Make get call using curlCall


BassemN

Recommended Posts

You can specify the parameter in the URL field instead of defining them as an array, for example:

this is the regular CurlCall as you call it, it will send parameters as POST request:

<?php

$url = 'http://www.whmcs.com/';
$postfields = array( 'a' => 'b', 'c' => 'd', etc... );
#$options = array( 'CURLOPT_TIMEOUT' => '300', 'HEADER' => 'xxxxx' ); # Optional
$response = curlCall($url,$postfields,$options);

 

We can change it to use GET like the following:

$url = 'http://www.whmcs.com/?a=b&c=d&e=f';
$options = array( 'CURLOPT_POST' => 0 );
$response = curlCall($url,$postfields,$options);

 

- - - Updated - - -

 

now I understand by "get call" you mean "GET Request" :)

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated