In the PHP code provided, what changes need to be made to ensure the image is displayed correctly on the webpage?

The issue in the provided PHP code is that the image source is not being properly echoed within the HTML img tag. To fix this, we need to concatenate the image source variable with the HTML code. Additionally, we need to ensure that the image path is correct and accessible.

<?php
$image = "path/to/image.jpg";
echo "<img src='" . $image . "' alt='Image'>";
?>