+1 vote
in PHP by
Which of the following is the correct way to print "Hello World" in PHP?

a) "Hello World";

b) write("Hello World");

c) echo "Hello World";

d) None of the above

1 Answer

0 votes
by

c) echo "Hello World";

Description: PHP echo is a language construct, not a function. Therefore, you don't need to use parenthesis with it. The correct way to print "Hello World" in PHP is:

echo "Hello World";

Related questions

+1 vote
asked May 13, 2022 in PHP by john ganales
+1 vote
asked May 11, 2022 in PHP by sharadyadav1986
...