Main.php
Download
<?php # user file function user_greetings($name){ return 'Hello '.$name; } echo user_greetings('John'); ?>
Hello John