2702 Views
1. array_change_key_case :-  It changes all the keys of  an array in uppercase. <?php $employee_id=array("Jim"=>"40535","Krish"=>"83007","Joe"=>"41233"); print_r(array_change_key_case($employee_id,CASE_UPPER)); ?> Output Array ( [JIM] => 40535 [KRISH] ...
Anamika Gupta
Jul 23, 2018
1954 Views
Function play an important role in programming language as it organise our code in a proper manner. We can use our code over and over by naming it only. The function works very similar to variable, but they are more powerful than that. Function Syntax <?php function functionName() { // ...
Anamika Gupta
Jul 10, 2018
2323 Views
Javascript and HTML binding To insert javascript in your html page  which is very basic and easy javascript and their fundamentals First, you create a  HTML page index.html  in your IDE( i.e  webstrom, netbeans, Visual Studio etc..) . In  index.html page ...
Anamika Gupta
Mar 23, 2018
2382 Views
Array are used to store multiple value in a single variable.It can hold multiple value in one time For example:Storing the list of brand in single list of item be like this: var brand1=”lancer”; var brand2=”puma”; var brand3=”lee cooper”; var brand4=”reebok”; In a ...
Anamika Gupta
Feb 05, 2018
Page 1 of 1 Pages       Total Records 4
  • First
  • Prev
  • 1
  • Next
  • Last