Using a few lines of PHP to programmatically upload an image to Cloudinary
Scheduled for 3rd May 2021.
This quick block post shows how to upload an image to Cloudinary using PHP, using their provided SDK
Showing posts from the category "Back-end Development"
Scheduled for 3rd May 2021.
This quick block post shows how to upload an image to Cloudinary using PHP, using their provided SDK
Posted on 5th July 2020.
It seems I have been doing a lot of command line work on Debian with MySQL recently and have been having to search the internet (or my bash history) every time I need to do something. Here is a collection of commands I have been using
Posted on 5th March 2020.
An example of how to use Cloudflare Workers to set a cookie on your page without modifying code on your server. This Worker can set a cookie based on either a GET parameter in the URL or a particular file path
Posted on 14th February 2019.
Docker allows you to host websites locally, which allows you can develop them within an environment which can be an exact replica of the live one. This blog post explores my first experience with Docker.
Posted on 3rd December 2014.
To put it very simply, a PHP class is a way of grouping a set of functions and variables into entities,allowing them to be used as self-contained instances . It ...