7 How to create Array in PHP

Program:

<?php
echo "Array Demo <Br>";
$names = array("Atharva","Coding",124);

print_r($names);
?>


Output:

How to create Array in PHP

Previous
Next Post »