How to switch php versions on command line ubuntu There are two methods to switch php versions on the command line ubuntu. Method 1…
Cutting a string at a special character in PHP using explode() In this tutorial we talk about how to use PHP explode method to your pages.…
PHP remove commas from numeric strings If you have a numeric value like this “1,435”, you can use this method to…
How to use window setTimeout() Method JavaScript The setTimeout() method calls a function or evaluates an expression after a specified number of…
How to use jQuery .ajaxStop() method .ajaxStop() fires after completion of all AJAX requests on your page. If you want to run…
How to convert HTML code to string for use in javascript Use this url to convert HTML code into string : https://codebeautify.org/string-builder String Builder Online helps…
How to use php number_format() function The number_format() function formats a number with grouped thousands. Syntax number_format(number,decimals,decimalpoint,separator)
How to use php array_push() function The array_push() function inserts one or more elements to the end of an array. Syntax…
How to use php array_unique() function The array_unique() function removes duplicate values from an array. If two or more array values…
How to use PHP count() Function The php count() function returns the number of elements in an array. Syntax count(array, mode)…