I want to call my custom php function from my index.php, but the function is located in another file. Ho to do that ?
Example :
index.php :
<?php
myCustomFunction();
?>
function.php
<?php
function myCustomFunction(){
//some codes
}
?>
Thank you.