SyntaxFix
Write A Post
Hire A Developer
Questions
file1.php
<?php function func1($param1, $param2) { echo $param1 . ', ' . $param2; }
file2.php
<?php require_once('file1.php'); func1('Hello', 'world');
See manual