Press "Enter" to skip to content

Posts published in “PHP”

How to shutdown computer using PHP Script?

0

PHP is a very popular language for developing a website. We can also control system by some PHP commands, In this article, I am going to show How to shutdown computer using PHP Script. We…

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…