<?php function setGlobalVariable() { $GLOBALS['variable_name'] = "Some Value"; } setGlobalVariable(); echo $variable_name; // Outputs: Some Value