What are some best practices for improving the readability of PHP code with multiple echo statements?

When dealing with multiple echo statements in PHP code, it can become difficult to maintain readability and organization. One way to improve this is by concatenating the strings that need to be echoed together before using a single echo statement. This can make the code cleaner and easier to follow.

// Example of improving readability with multiple echo statements
$name = "John";
$age = 30;
$occupation = "Developer";

// Original code with multiple echo statements
echo "Name: " . $name . "<br>";
echo "Age: " . $age . "<br>";
echo "Occupation: " . $occupation . "<br>";

// Improved code with concatenated strings
echo "Name: " . $name . "<br>" .
     "Age: " . $age . "<br>" .
     "Occupation: " . $occupation . "<br>";