<?php $x = 'Hyvor'; $y = 'Developer'; function websiteName() { global $x, $y; echo $x, $y; } websiteName(); // outputs HyvorDeveloper