What does "echo" stand for? |
| |
 |
Reputation Power: 1

| | 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?
|
|
|
|
| |
 |
Reputation Power: 19

| | Code Guru Location: India
Gender:  Posts: 1456 Topics: 135  |
|
|
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.
Help us to keep this forum clean. Report the SPAM!
|
|
| |
 |
Reputation Power: 1

| | 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).
|
|
| |
 |
Reputation Power: 1

| | 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.
|
|
| |
 |
Reputation Power: 17

| | Code Guru Gender:  Posts: 1403 Topics: 86  |
|
|
March 14, 2010, 03:34:22 PM
|
I have always wondered why it is print, seems illogical
|
|
| |
 |
Reputation Power: 1

| | 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.
|
|
| |
 |
Reputation Power: 1

| | 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
|
|
| |
 |
Reputation Power: 1

| | 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.
|
|
| |
 |
Reputation Power: 2

| | 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 Reputation Power: 1

| | New Coder Gender:  Age: 22
Posts: 18 Topics: 1  |
|
|
May 18, 2011, 04:47:58 PM
|
what is the different between echo and print in php?
|
|
| |
 |
Reputation Power: 6

| | Professional Coder Real name: Odusee Location: Australia
Gender:  Posts: 455 Topics: 46  |
|
|
May 31, 2011, 12:27:52 AM
|
if C = printf then PHP = echo 
|
|
| |
 |
Reputation Power: 2

| | 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.
|
|
| |
 |
Reputation Power: 6

| | Professional Coder Real name: Odusee Location: Australia
Gender:  Posts: 455 Topics: 46  |
|
|
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.
|
|
| |
 |
Reputation Power: 3

| | Professional Coder Posts: 227 Topics: 7 |
|
|
July 17, 2011, 11:58:26 PM
|
echo is use for printing. In php echo work as like print function.
|
|
| |
 |
Reputation Power: 5

| | Professional Coder Posts: 244 Topics: 85  |
|
|
August 08, 2011, 11:36:48 PM
|
echo used for printing function
|
|
| |
 |
Reputation Power: 2

| | Skilled Coder Location: India, Punjab/Ludhiana
Posts: 183 Topics: 2  |
|
|
April 16, 2012, 12:59:11 AM
|
Echo is a command that is used for printing message .
|
|
| |