+ 1
What is echo means
7 Answers
+ 1
it i's a command for print.
+ 1
+ 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.
0
it's like print
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.
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
0
you can print a string(like text) with one !!!