How can PHP be used to retrieve system information like the computer name in Windows XP?
To retrieve system information like the computer name in Windows XP using PHP, you can use the `getenv()` function to access the `COMPUTERNAME` environment variable.
$computerName = getenv('COMPUTERNAME');
echo "Computer Name: " . $computerName;