What is echo means | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

What is echo means

3rd Dec 2016, 7:56 AM
Sai Krishna Reddy.Ch
Sai Krishna Reddy.Ch - avatar
7 Answers
+ 1
it i's a command for print.
3rd Dec 2016, 11:13 AM
farshad bahrampori
farshad bahrampori - avatar
3rd Dec 2016, 6:03 PM
salem
+ 1
echo is a function, wich print an arguments on the body of page. For example: echo "Hello World.";. This example print Hello World on the screen.
8th Dec 2016, 5:34 PM
Pingvinich
Pingvinich - avatar
0
it's like print
3rd Dec 2016, 9:05 AM
Mohammed Shalan
Mohammed Shalan - avatar
0
Print a value assigned to variable or a simple string/text Example: $name = "Jim"; $last_name = "Miller"; $age = 21; echo $name . " " . $last_name . " " . $age . " years old"; This will print: Jim Miller 21 years old.
3rd Dec 2016, 11:25 AM
Constantin Nistor
Constantin Nistor - avatar
0
php has a bult-in echo function.which is used to ouput of the text...actually it's nt a function,it's a language construct..it doesn't require parenthesis
8th Dec 2016, 7:27 AM
Vidadala Deepu
Vidadala Deepu - avatar
0
you can print a string(like text) with one !!!
16th Dec 2016, 3:52 PM
Ahmad Yazdani
Ahmad Yazdani - avatar