Image Steganography : Hiding Text in Images using PHP

Steganography is the practice of concealing a message or information within another non-secret or unsuspecting medium, such as an image, audio, video, or text, without any apparent indication that a message is... Read more »

How to get current Git branch using PHP ?

Git is a distributed version control system (DVCS) that is used for tracking changes in computer files and coordinating work on those files among multiple people. It was created by Linus Torvalds... Read more »

Top 10 Essential Questions for a PHP Developer Interview with Expert Answers

PHP (Hypertext Preprocessor) is a server-side scripting language that is widely used for creating dynamic web pages and web applications. It was created in 1995 by Rasmus Lerdorf, and it has since... Read more »

How to enable or disable warnings and errors in PHP ?

In PHP, there are several types of errors and warnings that can occur during the execution of a script. Notice: This type of error occurs when a script encounters something that could... Read more »

Minify HTML, JavaScript and CSS using PHP

The following script defines a simple PHP function that can minify HTML, JavaScript and CSS codes into one line. Minifying codes is of huge importance as far as web performance is concerned.... Read more »

Get WHOIS information using PHP

In this tutorial, we will be using PHP API to get the WHOIS records and ownership details of any domain name, like owner name, email address, country, creation, last updated, expiration, location... Read more »

Google Analytics Realtime Traffic Viewer using Analytics API

In this tutorial, we are going to develop a complete Google Analytics Realtime Traffic Tracking tool using Analytics API. Please follow these steps to develop your own Google Analytics Dashboard for Realtime... Read more »

Get random jokes with PHP using Joke API

In this tutorial, we are going to get random jokes with Joke API using PHP. Source Code : <style type="text/css"> body{ background-color: aliceblue; } .box-container{ display: flex; justify-content: center; align-items: center; height:... Read more »

Using Authentication Header with file_get_contents in PHP

In PHP, file_get_contents() function is commonly used to get content of a file or a url and it works like a charm in normal scenario. If in case, the URL or file... Read more »

Simple HTML parser using PHP

A simple PHP HTML DOM parser written in PHP5+, supports invalid HTML, and provides a very easy way to find, extract and modify the HTML elements of the DOM. jQuery like syntax... Read more »