<html>
<body>
<?php
function arr(){
$a[0]=2;
$a[1]=4;
$a[2]="hello";
echo $a[0]." ".$a[1]."<br>".$a[2];
}
arr();
?>
</body>
</html>
<html>
<body bgcolor="green">
<?php
function arr(){
$a[0]=2;
$a[1]=4;
$a[2]="Hanish";
echo$a[0]. " " .$a[1]."<br>".$a[2];}
arr();
?>
</body>
</html>
output:-
2
4