A Step-by-Step Guide to Getting Adsense Approval for Your Website
Google Adsense is a program run by Google that allows website owners to display ads on their website and earn money from clicks on those ads. To use Adsense, website owners must first apply and be approved by Google, and then they can place ad code on…
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 become one of the most popular languages for web…
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 indicate an error, but it is not critical. For example, using a…
Everything you need to know about ChatGPT
AI chat, or chatbots powered by artificial intelligence, are software programs designed to simulate conversation with human users through text or voice interactions. These chatbots can be integrated into messaging apps, mobile apps, and websites, and are…
10 tips for beginners who want to become professional developer
Being a professional developer involves using your technical skills and knowledge to design, build, and maintain software and other applications. As a professional developer, you may work on a variety of projects, including building websites, creating…
How to change image randomly in a webpage using JavaScript ?
In this tutorial, we are going to learn to change image randomly in a webpage using JavaScript. We will defined fixed set of images which will be used in the webpage randomly after certain interval. Watch this video for complete guidance :…
Lottery Lucky Draw generator using JavaScript
In this tutorial, we will be using JavaScript to generate a Lottery Lucky Draw in our webpage. The basic idea is to rotate through a number of random numbers and and stop it at any random point to decide the winner of the lottery. Follow this video for…
Rotate Image using jQuery and CSS
In this tutorial, we are going to rotate an image using CSS transform property. CSS transform property allows us to rotate, scale, move or skew elements. Follow this video for complete guidance : Source Code : <link rel="stylesheet"…
Simple Image Carousel using Bootstrap
An Image Carousel is a container containing a series of images which can be viewed one by one or by clicking in the specific index. The carousel generally uses CSS and JavaScript to achieve the desired output. Follow this video for complete guidance :…
Sending Free Emails with SendinBlue API V3
Email has become one of the integral part of our daily process in recent years. Especially to business or corporate houses, emails are widely used for communication and marketing purposes. In this article, we are going to learn to send emails using PHP.…
Image Grayscale and Zoom effect on hover using CSS
Images, graphics and videos are an integral part of web presentation in recent times. Users are always attracted to visual presentations as compared to text contents. In this article, we are going to create a hover effect on image to make our webpage…
Flying Plane Animation using HTML and CSS
In this tutorial, we are going to learn to create a flying plane animation using simple HTML and CSS. We will use “animation” CSS property to move the plane in sky background. We need two images for the sky and for the plane. Here are the two…
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. The less bytes the faster the experience because less bytes of…
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 of both registrar and domain in the JSON format. What is…
Rotating Border Animation using CSS
In this tutorial, we are going to create a rotating border animation using CSS. In the following example, we have set a rotating border to a an image element using CSS animation property. We have used position property, ::before selector, animation…