Program: <?php #Exceution Operator $output = `ls -l`; echo $output; #Displays long list of files from present direc...
Read More
8 Foreach loop in PHP
Program: <?php $arr = array(1,2,3,4,5); foreach ($arr as $value) { echo $value." "; } ?> Output:
Read More
Subscribe to:
Posts (Atom)