1.What are the difference between echo , print , print_r ?
else this 3 can we show output to a client in some other
way?
Answer Posted / navanee
$a=array("ford","benz","bmw","maruthi");
echo ($a);//output Array
$a=array("ford","benz","bmw","maruthi");
print_r ($a);//output Array ( [0] => ford [1] => benz [2] =>
bmw [3] => maruthi )
$a=array("ford","benz","bmw","maruthi");
print ($a);//output Array
| Is This Answer Correct ? | 30 Yes | 5 No |
Post New Answer View All Answers
What is advanced php programming?
What is the interface in php?
What is nan value?
What are the advantages of triggers?
What are encryption functions in php?
How do you end a session in php?
What are the different types of PHP arrays?
Is not null mysql?
Explain type casting and type juggling.
Explain how we can retrieve the data in the result set of mysql using php?
How do I start a php session?
How many types of array supported in php?
How to write the form tag correctly for uploading files?
Tell me how do you define a constant?
What is php sequence?