Write a program to print “Hello World” using echo
Description: Write a program to print “Hello World” using echo only?
Conditions: You can not use any variable.
Solution:
echo "Hello World";Output:
Hello WorldWrite a program to print “Hello PHP” using variable
Description:Write a program to print “Hello PHP” using php variable?
Conditions: You can not use text directly in echo but can use variable.
Solution:
$a = "Hello PHP";Output:
Hello PHPWrite a program to print a string using echo + variable.
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: Output:
echo "Welcome to the " . "$b";
© 2024 Ceejay Nilles. All rights reserved.