To Check Duplicate Values in Foreach PHP, we use an example where we find duplicate values in an array without using PHP inbuilt function, and then on the second method, we find duplicate values in an associative array with the help of array_search() function. Here we discuss two methods to find duplicate values in array […]
Image Creation From User Input in PHP
In Image Creation From User Input in PHP, we use the PHP Graphics Draw library which is also known as PHP gd. To create images using PHP code we have to use Image processing and graphics library functions. On the complete process, we go for user input first, where the user can input letters or […]
Allow Only String and Numbers Using PHP
To Allow Only String and Numbers Using PHP, we use PHP in-built functions. We do it with textbox input. Where the user gives some input on the textbox then using PHP inbuilt function we validate the staring or number using PHP. Here are 2 thing we discuss about, Allow only characters in textbox using PHP. […]
2 Ways To Check if Email already exists Using PHP
In this article we discuss 2 Ways To Check if Email already exists Using PHP, to do that you also have to read about MySQL queries and syntax. On source code, we use insert and select query to validate the email is already exists or not. Here is the list of 2 ways where we […]
Get List of Holidays Using Google Calendar API
To Get List of Holidays Using Google Calendar API, here are 2 major steps to follow, Set-up Google Calendar API on Google developer console. From the “Credentials” tab you can create an API key, you get something like this “AIzaSyBcOT_DpEQysiwFmmmZXupKpnrOdJYAhhM” Then you can access the holiday calendar using this URL https://www.googleapis.com/calendar/v3/calendars/en.uk%23holiday%40group.v.calendar.google.com/events?key=yourAPIKey Below you can check […]
Create Repository & Push Code To GitHub First Time
To start the process of Create a Repository & Push Code To GitHub First Time, first I want to tell you some more about GitHub and git version control. Git is mainly used for the collaboration of the projects and track the file changes. Before we start, we need 2 important things first, GitHub Account […]
Set-up Firebase Project using Firebase Console
Before we Set-up Firebase Project using Firebase Console, we have to know the introduction about Firebase like what is Firebase and Why we use it on the web and app development. Here are 3 major points to discuss, What is Firebase? Why we use Firebase? Complete Visual Guide to Set-up Firebase Project using Firebase Console […]
Migrate WordPress Site To New Host Manually
To Migrate WordPress Site To New Host Manually, we have to follow 6 major steps to successfully migrate the WordPress site to the new host. Open database or PHPMyAdmin then Export the Existing database. Create ZIP of all the current WP files. Create a new database from the Database wizard on the new hosting panel. […]
Get Selected Date From Calendar in PHP using Ajax
To Get Selected Date From Calendar in PHP using Ajax, we use jQuery date-picker and bootstrap form. Here are the steps to get the selected date from the form using Ajax, Live View Below Set up jQuery calendar using jQuery CDN. HTML form for input From and To Date. Ajax Script to POST the selected […]