Concatenation Flashcards
1
Q
Using variable $message, how do you concatenation the following 2 strings:
$greeting = “Hello, “;
$name = “John“;
A
$message = $greeting . $name;
Php > Concatenation > Flashcards
Using variable $message, how do you concatenation the following 2 strings:
$greeting = “Hello, “;
$name = “John“;
$message = $greeting . $name;