How can one effectively communicate programming questions in a forum setting?

Example: I am trying to loop through an array in PHP and print out each element, but I keep getting an undefined index error. I believe the issue is with how I am accessing the array elements.

foreach ($array as $element) {
    echo $element . "<br>";
}