What is the potential impact of session.use_trans_sid being set to On in a PHP server configuration?

Setting session.use_trans_sid to On in a PHP server configuration can potentially expose session IDs in URLs, making them visible to users and increasing the risk of session hijacking. To mitigate this risk, it is recommended to disable session.use_trans_sid and instead rely on cookies for session management.

// Disable session.use_trans_sid in php.ini configuration file
session.use_trans_sid = Off;