putenv() is a PHP function that is used for setting the value of a particular environment variable

PHOTO EMBED

Fri Mar 04 2022 17:25:22 GMT+0000 (Coordinated Universal Time)

Saved by @mboljar

<?PHP

$_SERVER['REMOTE_ADDR']; //find the current user's IP address

putenv("tmp=usr");  //set an value of environment variable

echo $_SERVER['tmp'];

?>
content_copyCOPY

https://www.w3schools.in/php/environment-variables/