?>
<?php
$array2= array("first_name" => "Ravi" , "second_name" => "Alisha"); ?>
<?php
echo $array2["first_name"] . " ". $array2["second_name"];
?><br />
<pre><?php
print_r($array1);
?></pre>
The commented section is still functioning … idk what i am doing wrong … i think its simple but i cant find the error…