InterviewSolution
Saved Bookmarks
| 1. |
What is the difference between print and echo in php? |
||||||||
|
Answer» The ECHO and print are basically the same functions, display output data on the SCREEN. HOWEVER, there are some minor differences between the two such as:
Here’s an example of each Echo and Print to clearly demonstrate their proper usage: Example Echoecho "PHP is Fun!"; Printprint "PHP coding is Fun!"; |
|||||||||