How Can I Create a Line Break

To create a line break in PHP, you use the line:

The difference between single and double quotes in PHP is that,
with single quotes, the PHP echo command passes functions, exactly as is,
and with double quotes, the information, variables, HTML commands, etc, gets processed.
An example is shown below:

Example

Below are the statements with line breaks:

These are 3 liens :1)First line 2)Second line 3)Third line

Below are the statements with line breaks:

These are 3 liens:
1)First line
2)Second line
3)Third line

PHP Code

The PHP Code to create the above code is: