What are the security implications of using short_open_tags in PHP?

Using short_open_tags in PHP can lead to security vulnerabilities, as it can conflict with XML declarations and make it easier for attackers to inject malicious code. To mitigate this risk, it is recommended to disable short_open_tags in the PHP configuration file.

// Disable short_open_tags in php.ini file
short_open_tag = Off