What could be causing the issue of the echo output not ending properly in the PHP code provided?

The issue of the echo output not ending properly in the PHP code provided could be due to missing semicolons at the end of each echo statement. To solve this issue, make sure to add semicolons at the end of each echo statement to properly terminate the output.

<?php

echo "Hello, ";
echo "World!";

?>