All Posts
How to create a multilevel category and subcategory in Laravel
You need to meet categories and subcategories in most projects you work on in Laravel or any language. As far as categories are concerned, the tree structure is the best....
- 7904 Views
- 24 Jan 2023
How to check YouTube video exist Laravel validation
Laravel provides numbers of validation rules. It will also allow us to create some of your own validation rules. One method of registering custom validation rules is using rule objects. To generate....
- 3097 Views
- 20 Feb 2022
Generate Dummy Posts in WordPress
With Generate Dummy Posts plugin, You can create dummy posts with featured images in just 1 click. Developers and designers often used dummy text to create or develop blogging wordpress....
- 2369 Views
- 14 Feb 2022
How to add captcha in Contact Form 7
Secure your website Contact Form 7 forms from bots and hackers using plugin Contact Form 7 Text CAPTCHA. Just place shortcode [captchacf7* input-captcha-cf7 id:input-captcha-cf7] in your form where you want....
- 2561 Views
- 14 Feb 2022
Multiple user roles authentication Laravel 8
Today I will create multiple roles based login in laravel app. There will be 3 types of users in my laravel app. User types: Admin Executive Basic User There are....
- 9052 Views
- 12 Jan 2022
Get Facebook long live access token in AWS Lambda function
First create login with facebook button in your frondend app or website. You can create facebook login button from their official developer site. https://developers.facebook.com/docs/facebook-login/web/login-button Create button, click on get code....
- 2786 Views
- 04 Jan 2022
Deploy Laravel project from local to production server
Once the laravel project is done, you can move the website from local to live server. In this blog I will show you that how we can move laravel website on....
- 3843 Views
- 03 Jan 2022
How to delete Instagram account permanently
There was once a time when the only means of communication were handwritten letters. Pigeons were trained to deliver Letters to the desired destination. Then in 1876, Graham bell came....
- 2405 Views
- 30 May 2021
JQuery AJAX image upload with form data in PHP
In this blog I will show you that how we can upload an image using jQuery, AJAX, MySql and PHP. We can also upload an image without AJAX and jQuery,....
- 2731 Views
- 20 Mar 2021
Insert Update Delete in PHP MySQL
In this blog I will try to explain you, how you can implement crud operataions or insert, update, delete in PHP using mysql. First you have to learn about some....
- 3301 Views
- 14 Mar 2021
How to make image background transparent using PHP
Most of the API's are paid or isn't working perfectly to remove background color from an image. There is an PHP default function imagecolortransparent() is used to define the transparent....
- 9643 Views
- 13 Dec 2020
Make custom pagination URL in Laravel without query strings
There are multiple libraries in laravel which will used to create pretty pagination URL, but in this article I will show you how you can achieve this functionality without using....
- 7310 Views
- 26 Nov 2020
How to create a cron job in wordpress
Cron is a job scheduler which executes in specific time. It is a Linux OS software used to schedule time based jobs. Cron jobs are like commands which are execute....
- 3437 Views
- 29 Mar 2020
Web Scraping in Laravel using Goutte
The web scraping means gets HTML information from a web-page. Web Scrapping is a easy way to display information of any website to your website. There are tons of libraries....
- 10894 Views
- 29 Mar 2020
Insert values during migration run laravel
With migrations in laravel, we can create, modify database tables without using phpmyadmin. In Laravel migrations are stores in project_folder/database/migrations in proper order. Every migration file is associated with the....
- 6302 Views
- 23 Mar 2020
Validation for string characters only with custom message in Laravel
In this blog I'm going to show you how you can add a validation on input allowed string characters only i.e. first-name field. There are various pre defined validations rules....
- 4356 Views
- 23 Mar 2020
Paypal credit card payment on website in PHP
PayPal Credit Card, the payment process will do on your website. In this post, I'm goes to explain how you can use PayPal credit card payment to Do Direct payment.....
- 2620 Views
- 23 Mar 2020
Add new columns in a table Laravel
Here I will show you how you can add news columns in already created table users. Needs alter table users to add a new column in users table. In laravel....
- 2686 Views
- 23 Mar 2020
How to create foreign key constraints in Laravel
In Laravel we can define relationships between two tables using the foreign key and used to link them. It refers to the primary key of the main table. The main....
- 3623 Views
- 23 Mar 2020
How to get form data in Contact Form 7
Contact form 7 is a wordpress plugin used to add form in a wordpress website without adding any custom code. Contact form 7 allow us an area in admin panel....
- 4227 Views
- 23 Mar 2020
Capture page screenshot by URL PHP script
There are many third-party API available to capture screenshot of a page or website. For this I will used simple API `Google PageSpeed Insights API`, which is used to measure....
- 2518 Views
- 23 Mar 2020
Insert Update Delete Select query in WordPress
Here I will explain how you can insert, update, delete, select data in wordpress using custom queries. WordPress provides a global object variable for do this functionality `$wpdb`, which is....
- 5926 Views
- 23 Mar 2020
How to parse an URL in PHP
In this blog i will discuss on URL parsing. `parse_url` function parse a URL and returns an associative array containing any of the various components of the URL that are....
- 2090 Views
- 23 Mar 2020
How to increase website speed
In this blog I will tell you some tips to increase your website speed. Most of the users prefer fast loading websites to view, they hates waiting to load websites.....
- 2384 Views
- 22 Mar 2020
Create plugin in WordPress in which create table in DB on activate
This blog is for beginner who ant ti learn who wants to learn how to build wordpress plugin. Wordpress allows us to use defaults core functions without creating them from....
- 3032 Views
- 22 Mar 2020
Create new tab under my account WooCommerce frontend
In this article I will show you how you can add new tabs with content in woocommerce user account page without any plugin. there are several plugins which can do this....
- 3508 Views
- 22 Mar 2020
Custom social media validations with validator jQuery
In this blog I'm going to create custom validation for social media URLs. Fo this I'm going to use jQuery Validation Plugin. I will create validation for Facebook page, Twitter....
- 2072 Views
- 22 Mar 2020
Custom image sizes in WordPress
Default images in wordpress are thumbnail, medium, large, full. Default size of thumbnail is 150x150, medium is 300x300, large is 1024x1024 and full is default upload size. Wordpress allows to....
- 2034 Views
- 21 Mar 2020
Get posts by meta key and meta value in WordPress
In this blog i will show you how to get posts in wordpress using meta_key and meta_value. For this I will pass meta_query as arguments in WP_Query function to get posts with....
- 2425 Views
- 21 Mar 2020
Get all categories title by post id in WordPress
In this blog I will show you to get latest 5 posts in wordpress with category names within it, which are assigned to them. WordPress categories are the groups of blogs or....
- 1942 Views
- 21 Mar 2020
Get all categories from custom post type in WordPress
In this blog I will get all the categories of custom post type using taxonomy. For this I've created post type books using Post Type Generator nd my taxonomy is post_book.....
- 2034 Views
- 21 Mar 2020
Create separate search forms for products, posts types and posts in WordPress
I will show you how you can add transparent logo or icon watermark using php script on an image(s) and save result image(s). You can align logo or icon using....
- 1882 Views
- 21 Mar 2020
Create multiple headers, footers, sidebars for different templates in WordPress
First copy and paste theme header.php file and rename it in your current theme. i.e. header-customheader.php . After that open header-customheader.php file and according to your needs change your header....
- 1965 Views
- 21 Mar 2020
Get custom post types in WordPress
To get custom post types in wordpress, pass post type data i.e. taxonomy, term id, post type and post_per_page in `WP_Query`, `query_posts` or `get_post` function. I will use `WP_Query` Difference....
- 2008 Views
- 21 Mar 2020
Get logged in user info in WordPress
Use wp_get_current_user() function to get logged in user info. We can use wp_get_current_user() function without any argument. It will return an object, if user is logged in else return 0. We....
- 2161 Views
- 21 Mar 2020
How to get all UK addresses by postal code
I will show you how you can get all addresses of UK by postal code. For this i will used an API https://api.getaddress.io. First I will create account on getaddress.io and after....
- 2267 Views
- 21 Mar 2020
PHP script to add transparent logo on multiple images
I will show you how you can add transparent logo or icon watermark using php script on multiple images and save result images. You can align logo or icon using....
- 2074 Views
- 21 Mar 2020
PHP script to add transparent logo on image
I will show you how you can add transparent logo or icon watermark using php script on a image(s) and save result image(s). You can align logo or icon using....
- 1963 Views
- 20 Mar 2020
Get next and previous post link in Laravel
Here I will show you how to display previous and next post link in single post page in laravel. For this we will use `max` and `min` functions in laravel. I'm using....
- 2602 Views
- 20 Mar 2020
Send transactional email with Sendgrid in Laravel
Here I will show you how to send email by Sendgrid templates. In sendgrid transactional templates you can create template layout and design with the use of page builder, no....
- 5500 Views
- 20 Mar 2020
API versioning in Laravel App
In this tutorial i will explain you to set up versioning in your laravel app or website. Its depends on your Application size, If you have a small application and....
- 2379 Views
- 20 Mar 2020
How to upload multiple images or files from frontend in WordPress without any plugin
In this tutorial I will let you know about upload multiple images or files in wordpress with custom code on front-end. If you want to brings same functionality in your....
- 5566 Views
- 15 Mar 2020
Get all the lists from Mailchimp account using CURL
In this article, We will get all the lists from a Mailchimp account using API 3.0, for this I'm going to use CURL request. We will use GET request using CURL....
- 2439 Views
- 15 Mar 2020
Create a LEAD in ZOHO CRM using Node JS
In this article, I will explain you that, how we can insert a lead in ZOHO CRM with node js, for this we will create lead with XMLDATA using CURL request. You....
- 2749 Views
- 14 Mar 2020
Create a LEAD in ZOHO CRM using API
In this article, I will explain you that, how we can insert a lead in ZOHO CRM, for this we will create lead with XMLDATA using CURL request. You can create leads, accounts,....
- 3876 Views
- 14 Mar 2020
Add new subscriber in a Klaviyo list API
In this article, I will explain you that, how we can insert a new record in klaviyo list using V2, for this I'm going to use CURL request. This API is used....
- 4864 Views
- 14 Mar 2020
Add new subscriber in a Mailchimp list API
Mailchimp is very flexible & gives you a variety of easily customizable options. Mailchimp is an email marketing service. It is an American company founded in 2001. They investing in....
- 3185 Views
- 14 Mar 2020