1<?php
2 function first($int, $string){ //function parameters, two variables.
3 return $string; //returns the second argument passed into the function
4 }
5?>
6
7<?php
8 include 'File1.php';
9 echo first(1,"omg lol"); //returns omg lol;
10?>