In the context of PHP forum discussions, what best practices should be followed when seeking help with code-related issues, especially for beginners with limited knowledge of the language?

When seeking help with code-related issues on a PHP forum as a beginner, it is important to clearly explain the problem you are facing in 3 to 5 sentences. Be specific about the error messages, expected output, and any relevant code snippets. Additionally, provide a complete PHP code snippet that implements the fix, if possible, to make it easier for others to understand and help you effectively. Example: Issue: I am trying to retrieve data from a MySQL database using PHP, but I am getting an error message "Undefined variable: connection". I have established a connection to the database using mysqli_connect(). Code snippet:

<?php
$connection = mysqli_connect("localhost", "username", "password", "database");

if (!$connection) {
    die("Connection failed: " . mysqli_connect_error());
}

// Your database query and data retrieval code here

mysqli_close($connection);
?>