Problem 3:
Description:
Write a program to print “Welcome to the PHP World” using some part of the text in variable
& some part directly in echo.
Conditions:
You have to use a variable that contains string “PHP World”.
Solution:
$text1 = "PHP World";
echo "Welcome to the $text1";
Output:
Welcome to the PHP World