Echo keyword is used to print a message in PHP T/F
Answer :-True
we can print a message using "echo" keyword.
This is just another method which is used to print statement in PHP.
example :-
echo "Hello World ";
Output :-
Hello World
Comments
Post a Comment