1.

What will be the output of the following PHP code ?
<?php
$name = array("Abhay", "Sujit");
array_push($name, "Neha", "Reema");
print_r($name);
?>

A. None of these
Answer» B.


Discussion

No Comment Found

Related MCQs