">
<?php$name = array("Ajit", "Ats", "Aju");echo "My name is {$name[0]}";?>
In the echo statement the {$name[0]} is replaced by the 1st element in name that is Ajit.
Previous Question Next Question
Your comments will be displayed only after manual approval.