Author

Pankaj Sood
Hello Friends, I'm Pankaj Sood, Full Stack Web Developer. Expertise in WordPress, PHP, Laravel, Angular, and Frontend Development. I'm building this site only to spread knowledge to the other user. And need your support to make this more flexible. So feel free to contact me, you can also submit your feedback using the contact us page. Thanks :)
In this article, we will discuss "How to deploy Angular App on Firebase". Today, you learn deployment an angular app on firebase is simple and easy. You can deploy your application directly from your terminal using simple commands. In case…
How to Send SMS with AWS SNS using Lambda & Python
In this article, we will discuss "How to Send SMS with AWS SNS using Lambda & Python". Amazon Simple Notification Service (AWS SNS) is a fully managed messaging service. You can check here for the pricing-related query, also amazon…
How to Create AWS IAM User with Programmatic Access
In this article, we will discuss "How to create AWS IAM user with programmatic access". Programmatic Access user is required if we want to control AWS services from the command line interface (AWS CLI) or working with the SDK. AWS provides…
Create Time Slots in PHP for Given Time
In this article, we will discuss "Create Time Slots in Php". Check the following code snippet. With this code, we can create time slots for a given interval and time range.
function getTimeSlot($interval, $start_time, $end_time)
{…
How to Create Taxonomy Term Meta Data in WordPress
In this article, we will discuss "how to create taxonomy term meta data in WordPress". We will create custom term metadata for our user taxonomy. You have to check the following post for a better understanding.How to Create Taxonomy for…
Child Theme Importance in WordPress
In this article, we will discuss "Child Theme Importance in WordPress". First, we need to know, what is a Child theme? A child theme is a theme that inherits the functionality and styling of another theme, called the parent theme. A child…
How to Display WordPress Custom Taxonomy in Dropdown
In this article, we will discuss "How to Display Wordpress Custom Taxonomy in Dropdown". As we know, WordPress is the most usable CMS (Content Management System) in the world. It provides a lot of features to the developer to make the…
How to Create Taxonomy for Users in WordPress
In this article, we will discuss "how to create a taxonomy for users in WordPress". As we know, WordPress is the most usable CMS (Content Management System) in the world. It provides a lot of features to the developer to make the…
Laravel Image Processing – Intervention Image Package
In this article, we will discuss "Laravel Image Processing - Intervention Image Package". As we know, Image processing is the most common requirement of every framework. Today, I will explain to you one of the packages "Intervention Image"…
Handling Multiple File Upload in Laravel
In this article, we will discuss "Handling Multiple File Upload in Laravel". As I already explain the file upload in our previous tutorial "Handling File Upload in Laravel". Here, I will explain how to upload multiple files.I'm assuming…