Write a program to print "Hello World" using echo only.
You can not use any variable.
echo "Hello World!";
Hello World!
Write a program to print "Hello PHP" using using variable.
You can not use text directly in echo but can use variable.
$hello = "Hello PHP"; echo $hello;
Write a program to print a "Welcome the the PHP World" using some part of the text in variable & some part directly in echo.
You have to use a variable that contains string "PHP World".
$world = "PHP World"; echo "Welcome to the $world";