How to pass multiple checkbox value on form submit

This tutorial we are implement pass multiple checkbox value on submit form. there are require in many signup form for select user for newsletter category and many other forms. So let’s have start with create

event_note
close

This tutorial we are implement pass multiple checkbox value on submit form. there are require in many signup form for select user for newsletter category and many other forms. So let’s have start with create

folder_open How to, HTML, PHP
Read more

How to create SEO friendly URL using PHP

SEO friendly URL using PHP we are going to implement creating SEO friendly Slug based on title. That require in Custom PHP Blog website. So, create PHP function and pass title as $string variable. you

event_note
close

SEO friendly URL using PHP we are going to implement creating SEO friendly Slug based on title. That require in Custom PHP Blog website. So, create PHP function and pass title as $string variable. you

folder_open How to, PHP
Read more

How to validate strong password strength in PHP

This tutorial we are validate user password. that require while registering user on system. PHP provide the preg_match function. So we can use this function to implement this. We will check at least one upper

event_note
close

This tutorial we are validate user password. that require while registering user on system. PHP provide the preg_match function. So we can use this function to implement this. We will check at least one upper

folder_open How to, PHP
Read more

How to convert PHP Array to JSON Object

This tutorial we will cover convert PHP array to JSON Object. JSON Objects are mainly used in API development and AJAX request. so let’s have start with example. We will give you three examples to

event_note
close

This tutorial we will cover convert PHP array to JSON Object. JSON Objects are mainly used in API development and AJAX request. so let’s have start with example. We will give you three examples to

folder_open How to
Read more

How to get user ip in php

get user IP address on visit, When user viewing your website, IP address is require to store like which country visit from? So simply add below code and get IP of visitor. Create ipaddress.php file

event_note
close

get user IP address on visit, When user viewing your website, IP address is require to store like which country visit from? So simply add below code and get IP of visitor. Create ipaddress.php file

folder_open How to
Read more

How to remove .php, .html extension from URL

This tutorial I’ll show you to remove .PHP extension from browser URL. This will help you to boost your website SEO ranking. inside the project root directory create .htaccess file Create .htaccess file If you

event_note
close

This tutorial I’ll show you to remove .PHP extension from browser URL. This will help you to boost your website SEO ranking. inside the project root directory create .htaccess file Create .htaccess file If you

folder_open How to
Read more

How to create SEO friendly slug URL in PHP

When you are using CORE PHP to create blog type website than this tutorial is really helpful. We will write SEO friendly URL like WordPress blog. That remove all spaces, special characters etc.. Create slug.php

event_note
close

When you are using CORE PHP to create blog type website than this tutorial is really helpful. We will write SEO friendly URL like WordPress blog. That remove all spaces, special characters etc.. Create slug.php

folder_open How to
Read more

How to convert local timestamp to UTC

UTC timestamp is useful when user want to see his local time based on server time. So we can convert any timestamp to UTC or UTC time to local timestamp. Convert current timestamp to UTC

event_note
close

UTC timestamp is useful when user want to see his local time based on server time. So we can convert any timestamp to UTC or UTC time to local timestamp. Convert current timestamp to UTC

folder_open How to
Read more