أنشئ حسابًا أو سجّل الدخول للانضمام إلى مجتمعك المهني.
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;
?>