Using single quotes:
My name is $name and I am $age years old.
Using double quotes:
My name is Rajko and I am 25 years old.
Explanation:
$name
will show up exactly how it's written in the code and special characters like \n
will not be shown.\n
will show my age and variables like $name
will be show Rajko.