Use multiple parameters with echo function in PHP
Description
The following code shows how to use multiple parameters with echo function.
Example
<?php
echo 'This ','string ','was ','made ','with multiple parameters.';
?>
The code above generates the following result.