Parse domain name from URL is used in many cases within the web project. During this short tutorial, we’ll provide an easy…

Parse domain name from URL is used in many cases within the web project. During this short tutorial, we’ll provide an easy…
We will discuss about how to update a record or data from MySQL database using laravel framework PHP. To update the data…
How to check Password Strength in PHP. When the user provides their account password, it always recommended validating the input. Password strength…
Form Validation is a necessary process before the data entered in the form is submitted to the database.
Create a directory using PHP and MySQL. index.html CreateFolder.php
Generally, once we upload image enter PHP, the uploaded image is stored during a directory of the server and therefore the respective…
What is PHP? The PHP (Hypertext Preprocessor) is a server scripting language, used for making dynamic web pages. PHP is an open…
In CodeIgniter, the Model is used for the Database manipulation – fetch, insert, update, and delete records. If within the project there…
Hi everyone in this tutorial we are going to see how to create Apply Promo code or Coupon code in Php using…
Change Date from dd/mm/yyyy to yyyy-dd-mm for MYSQL Friendly is simple. Possibly a more MySQL friendly format in some circumstances and Convert…
The substr_count() function is a built-in function in PHP which is used counts the number of times a substring occurs in a string.…
The str_replace() function is an built-in function in PHP which is used to replaces any portion of a string with another string.…
The strrev() function is an built-in function in PHP which is used to reverse strings. Syntax: string – This parameter is required.…
The empty() function is an built-in function in PHP which is used to check whether a variable is empty or not. A variable is…
The isset() function is an built-in function in PHP which is used to check whether a variable is set or not. The…
The PHP strlen() is used to get the length of a string. It also includes the white spaces inside the string. Syntax: string –…
The rtrim() function is a built-in function in PHP which is used to removes whitespace from the end of a string. Syntax string…
The ltrim() function is a built-in function in PHP which is used to removes whitespace from the beginning of a string. Syntax string…
The ucfirst() function is used to change the first character of a string to uppercase. Otherwise, We can use the strtolower() function in combination with the ucfirst()…
The strtoupper() function is used to converts a string to uppercase. All other special characters or numeric characters in the string remains…
The strtolower() function is used to converts a string to lowercase. All other special characters or numeric characters in the string remains…
We can use the PHP concatenation operator (.) to join or combine two strings together in PHP. This operator is exactly designed…
The explode() function is an built-in function in PHP which is used to break or split a string into an array by a…
The implode() or join() is a built-in function in PHP and it is used for creating a string by joining the elements or values…
strcmp() function is used to compare two strings in php. This function is case-sensitive and binary-safe. If we need case-insensitive comparison, we…
There’s no exact function to append a string in PHP. But PHP concatenation assignment operator (.=) is used to append a string with another string. There are two string…
The PHP substr() function is used to get the substring that is returns a part of a string. This function takes the begin and…
There’s no exact function to prepend a string in PHP. But PHP concatenation operator (.) is used to returns the concatenation of…
The str_replace() is the built-in function in PHP and is used to replace all the characters in a string. This function is…
The str_word_count() function can be used to counts the number of words in a string. Syntax string – Required. Specifies the string…