Strings are enclosed in quotes, but there is a distinction between single and double quotes in PHP.
When using double quotes, variables can be directly included in the string, as shown in the example above.
In contrast, when using single quotes, variables must be concatenated using the .
operator, like this:
$txt1
|