
Having problems trying to get your PHP curl post request working on a windows IIS server? Is the URL you are trying to post to […] Read More
PHP examples, tricks and tips. Loads of snippets of code. Branding tips and tools that will make your life so much easier. Everything for new and advanced developers
Having problems trying to get your PHP curl post request working on a windows IIS server? Is the URL you are trying to post to […] Read More
As promised in my previous post on Curl PUT here is the example code for a curl PHP GET request. $ch = curl_init(); curl_setopt($ch,CURLOPT_URL,$url); curl_setopt($ch, CURLOPT_CUSTOMREQUEST, ‘GET’ […] Read More
As Promised in my previous post on Curl POST here is the example code for a curl PHP PUT request. $ch = curl_init(); curl_setopt($ch,CURLOPT_URL,$url); curl_setopt($ch, CURLOPT_HTTPHEADER, […] Read More
Using API’s is essential in any developers life and I like to keep things simple where I can so using a PHP curl request is […] Read More
Google API Oauth v2 Curl PHP
When trying to integrate with google sheets api and looking through all the documentation from google I thought There must be a easier why then installing composer and having there dependencies. All I wanted to do was update a google sheet with values from a database.!!!