Get Image Height and Width in PHP July 12, 2020cocyer In this tutorial, we will learn how to get the image width and height in php. We will use getimagesize() function to implement [...]
Add Watermark Image to Image Using PHP June 21, 2020cocyer In this tutorial, we will introduce the way to add a watermark image to another image using php. 1. Read watermark image and [...]
Convert an Image to base64 Encoding String in PHP June 21, 2020cocyer In this tutorial, we will introdue how to convert an image to base64 encoding string in php. 1. Open and read image data [...]
Add Text Watermark to Image Using PHP June 21, 2020cocyer In this tutorial, we will introduce how to add text watermark to an image using php. 1. Open an image <?php $image = [...]
Convert a Colorful Image to Grayscale Image Using PHP June 21, 2020cocyer In this tutorial, we will introduce the way to convert a colorful image to a grayscale image using php. 1. Open a png [...]
Upload Images Using PHP and jQuery Without Refreshing Page June 21, 2020cocyer In this tutorial, we will introduce the way to upload images to web server without refreshing web page using PHP and jQuery. jQuery [...]
Convert PHP Array to JSON Formatted Text in PHP June 21, 2020cocyer In this tutorial, we will introduce the way to convert a php array to json string. We will use json_encode() to convert. 1. [...]
Remove the Website Field from WordPress Comment June 19, 2020cocyer In this tutorial, we will introduce the way to remove the website field from wordpress comment. When you plan to add a comment [...]
Remove Duplicate Elements from an Array in PHP June 19, 2020cocyer In this tutorial, we will introduce the way to remove duplicate elements from a php array using php array_flip() function. PHP array_flip() function [...]
Send SMS Using Twilio SMS API in PHP June 18, 2020cocyer In this tutorial, we will introduce the way to send sms using php with Twilio SMS API. 1. You should create an account in [...]