PHP Sort An Associative Array in Ascending Order by key in PHP Vikas Kumar Sep 18, 2018 0 In this tutorial we will explains how to sort an associative array in ascending order by key in PHP. You can use…
PHP How to Calculate the sum of values in an Array in PHP Vikas Kumar Sep 12, 2018 0 You can use the PHP array_sum() function calculate the sum of values in an array. The array_sum() function returns…
PHP How to Remove the First element from an array in PHP Vikas Kumar Sep 1, 2018 0 You can use the PHP array_shift() function remove the first element from an array in PHP. The array_shift()…
MySQL MySQL BETWEEN Operator Vikas Kumar Aug 19, 2018 0 Introduction to MySQL BETWEEN operator This MySQL tutorial explains how to use the MySQL BETWEEN operator with…
JQuery How to Get Selected Checkboxes Value Using jQuery Vikas Kumar Aug 6, 2018 0 In this tutorial we will explain how to get selected Checkboxes value Using jQuery. First user need to select one…
PHP Remove the Nth element from the end of an array Vikas Kumar Aug 4, 2018 0 You can use the PHP array_splice() function Remove the Nth element from the end of an array. The array_splice()…
PHP Remove Last element from an array in PHP Vikas Kumar Aug 3, 2018 0 You can use the PHP array_pop() function remove last element from an array in PHP. The array_pop() function returns…
MySQL MySQL query to find the highest salary from each department Vikas Kumar Jul 17, 2018 1 In article we will explain how to write a MySQL query to find the highest salary from each department from the…