What information should be provided when asking for help with PHP compilation issues?

Explanation: I am encountering an issue with compiling my PHP code due to a syntax error. I believe the problem lies in the way I am declaring and using variables in my script. I need assistance in correcting this issue. Code snippet:

<?php
$variable1 = "Hello";
$variable2 = "World";
echo $variable1 . " " . $variable2;
?>