Posts by Rafael Ribeiro • 31 points
1 post
-
3
votes4
answers35368
viewsA: Explanation about concatenation of variables in PHP
The advantage of using double quotes is that they interpret values. For example: <?php $nome = "Juca"; echo "Olá {$nome}!"; // Olá Juca! ?>