


How to convert string into a slug using JavaScript
Today we are going to learn how to convert a string into a slug using JavaScript. We will write a custom JavaScript function called convertToSlug and it generates the string into a slug value. Here goes the full snippets. /***************************************************** *@Description: Convert any string in to slug URL. *@Parameters: A text and a delimiter *****************************************************/ [...]
7 tips Improve Web Application Performance
Generally, website or web application performance refers to the content loading speed. So, 'Loading Speed' is the primary factor of any web application or web site success. Nowadays, we use the web application in our handhold devices like the mobile or tab, and the visitor likes to use those applications that load less than 3-4 [...]
Easy way to parse comma separated item in PHP
Today We are going to learn about PHP Parsing. Using the PHP script we can easily extract the individual elements from a comma-separated list. PHP has a useful function called explode() that can convert a comma-separated (string) lists into an array. Lets check an example. - Easy way to parse comma separated item in PHP: [...]