Source Code:
(back to article)
<?php // PHP program for illustrating echo // Declaring variables and initializing them. $x = "W3docs "; $y = "Computer science portal"; // Displaying the value of $x echo $x, $y;
Result:
Report an issue