What are some common errors that can lead to a 500 server error when using PHP?

One common error that can lead to a 500 server error when using PHP is a syntax error in the code. This can include missing semicolons, parentheses, or curly braces. To solve this issue, carefully review the PHP code for any syntax errors and correct them.

<?php

// Incorrect code with missing semicolon
echo "Hello, World"

// Corrected code with semicolon added
echo "Hello, World";
?>