lets say i make a file Services.php
<?php
$myGlobalVar='ranSTR';
function serv1($num)
{
//some processing...
return $num;
}
function serv2($num)
{
//some processing...
return $num;
}
?>
and i include it in some other file lets say myFile.php by
include "Services.php";
OR
require "Services.php";
- How can i call its functions in myFile.php