What is the potential issue with using Register Globals in PHP?

Using Register Globals in PHP can lead to security vulnerabilities such as injection attacks and data manipulation. To solve this issue, it is recommended to disable Register Globals in the php.ini configuration file by setting `register_globals = Off`.

// Disable Register Globals in php.ini
ini_set('register_globals', 0);