What does "echo" stand for? |
| |
|
|
|
New Poster Posts: 9 Topics: 3
|
|
|
February 21, 2010, 12:39:46 PM
|
|
What is ECHO meaning? You know, the echo we use to print data like in php , c++ ,etc?
|
|
| |
|
|
|
Code Guru
Location: India
Gender:  Posts: 1387 Topics: 105
|
|
|
February 22, 2010, 06:44:04 AM
|
|
In C and C++, we use printf to display data to user console or say display data to user on their screen. Similarly in higher technologies like asp.net we use response.write to display data onto the user screen.
Same wise in PHP we use echo keyword to display data to the user.
|
|
| |
|
|
|
New Poster Posts: 10 Topics: 0
|
|
|
March 02, 2010, 04:33:30 AM
|
|
Print and Echo are commands used to output information to the visitors screen (on a web page).
|
|
| |
|
|
|
New Poster Posts: 10 Topics: 2
|
|
|
March 03, 2010, 06:37:51 AM
|
|
in php echo is (slightly) faster than print. perhaps also the same in other languages.
|
|
| |
|
|
|
Code Guru Gender:  Posts: 1399 Topics: 85
|
|
|
March 14, 2010, 03:34:22 PM
|
|
I have always wondered why it is print, seems illogical
|
|
| |
|
|
|
New Poster Posts: 3 Topics: 0
|
|
|
April 22, 2011, 03:28:39 AM
|
|
In php answer is (slightly) faster than print. conceivably as well the aforementioned in added languages.
|
|
| |
|
|
|
New Coder Real name: Michelle Jorgen
Posts: 42 Topics: 2
|
|
|
April 29, 2011, 12:13:27 AM
|
|
just like a prinf command
Echo print the statment
|
|
| |
|
|
|
New Coder Posts: 25 Topics: 0
|
|
|
April 29, 2011, 01:20:28 AM
|
|
Echo command is a basically LINUX command, with the help of Echo command we can print our message.
|
|
| |
|
|
|
Skilled Coder Real name: Janne
Location: california
Gender: 
Age: 26
Posts: 108 Topics: 1
|
|
|
April 29, 2011, 10:47:40 PM
|
|
The echo() function is not actually a function, so you are not required to use parentheses with it. However, if you want to pass more than one parameter to echo(), using parentheses will generate a parse error.
|
|
| |
|
Watch Online Movie Playnstop.com Activity
|
|
New Coder Gender: 
Age: 21
Posts: 18 Topics: 1
|
|
|
May 18, 2011, 04:47:58 PM
|
|
what is the different between echo and print in php?
|
|
| |
|
|
|
Professional Coder Real name: Odusee
Location: Australia
Gender:  Posts: 458 Topics: 47
|
|
|
May 31, 2011, 12:27:52 AM
|
if C = printf then PHP = echo 
|
|
| |
|
|
|
Skilled Coder Posts: 125 Topics: 0
|
|
|
June 13, 2011, 02:14:07 AM
|
what is the different between echo and print in php?
Actually Echo and Print both give the same output but main different between this two is the structure of it.
|
|
| |
|
|
|
Professional Coder Real name: Odusee
Location: Australia
Gender:  Posts: 458 Topics: 47
|
|
|
June 14, 2011, 12:30:39 AM
|
Actually Echo and Print both give the same output but main different between this two is the structure of it.
Yes the functions are the same. But differ because of the languages they belong to.
|
|
| |
|
|
|
Professional Coder Posts: 229 Topics: 7
|
|
|
July 17, 2011, 11:58:26 PM
|
|
echo is use for printing. In php echo work as like print function.
|
|
| |
|
|
|
Regular Coder Posts: 73 Topics: 2
|
|
|
August 08, 2011, 11:36:48 PM
|
|
echo used for printing function
|
|
| |