Step by step Bootstrap 3 tutorials 0

Using Lists Group in Bootstrap 4 with Example

In Web Layouts, lists are commonly used all around to give desired design effects for viewers. In Bootstrap 4 all the basic three types of listings are allowed i.e. 1....

Magento Step by Step tutorials 0

How to Add Category Image in Magento?

Each and every category for your Magento E-Commerce store must have specific image to let the viewers know more about the category itself. More-ever this will also help you to...

Php tutorials for beginners with example 0

strip_tags – PHP String Functions

Syntax : strip_tags ( string, allowable_tags); Description : strip_tags() function will Strip HTML and PHP tags from a string. Note : HTML comments and PHP tags are also stripped. This is...

Php tutorials for beginners with example 0

strcspn – PHP String Functions

Syntax : strcspn ( string, char, start, length); Description : strcspn() function will returns the number of characters found in a string before any part of the specified characters are found....

Php tutorials for beginners with example 0

strcoll – PHP String Functions

Syntax : strcoll ( string1, string2 ); Description : strcoll() function will function compares two strings based on locale and  this comparison is case sensitive. Note : If the current locale...

Php tutorials for beginners with example 0

strcmp() – PHP String Functions

Syntax : strcmp ( string1, string2 ); Description : strcmp() function will compare two strings. This is case-sensitive function. Note : Binary safe and case-sensitive function.  Parameter : string1 – This is a...

Php tutorials for beginners with example 0

stristr – PHP String Functions

Syntax : stristr ( string, search, before_search ); Description : stristr() function will find the first occurrence of search in a string. This is case-insensitive function. Note : This function is binary-safe....

Php tutorials for beginners with example 0

strchr() – PHP String Functions

Syntax : strchr ( string, search, before_search ); Description : strchr() function will find the first occurrence of search in a string. This function is an alias of the strstr() function. Note :...

Php tutorials for beginners with example 0

strstr – PHP String Functions

Syntax : strstr ( string, search, before_search ); Description : strstr() function will find the first occurrence of search in a string Note : This function is binary-safe. Note : This function...