Press "Enter" to skip to content

How to Convert PHP Array into JavaScript Array

0

You can easily use PHP array in javascript you only need to convert PHP array into JSON format Using json_encode() function, PHP array can be converted to JavScript array and accessible in JavaScript. whatever the…

What is $ v/s $$ in PHP

0

You have think or searched that what is $ and $$, if yes then, your search end here. $$var  is known as reference variable where as $var is normal variable, in the same way program…