Write a program to print two variables in single echo
Description:
Write a program to print 2 php variables using single echo statement.
Conditions:
- First variable have text “Good Morning.”
- Second variable have text “Have a nice day!”
- Your output should be “Good morning. Have a nice day!”
- You are allowed to use only one echo statement in this program.
View Solution/Program
<?php
$message_1 = "Good Morning.";
$message_2 = "Have a nice day!";
echo $message_1." ". $message_2;
?>
Tutorials Class - Output Window
Good Morning. Have a nice day!
Learn more about the similar topics:
Tutorials |
---|
PHP Variables |
Interview Questions & Answers |
---|
How to check if a variable is empty in PHP? |
Is PHP a case sensitive language? |
What are the different data types in PHP? |