Register now or log in to join your professional community.
ff1.php
<?php
function call1($int, $string){ //function parameters, two variables.
return $string; //returns the second argument passed into the function
}
?>
ff2.php
<?php
include 'File1.php';
echo first(1,"Call"); //returns omg lol;
?>