|
Let me try to answer,
1. "\n" is called as New Line character in PHP. The data following it will print in a new line. '\n' will print \n as it is.
2. Both are correct, echo "text" will print text and echo text will print value contained in text (if any).
4. In what context you are asking this question?
|