Warning: include(Math.php): Failed to open stream: No such file or directory in C:\xampp\htdocs\php ModulesAndNamespaces\php modules & namespaces.php on line 13
<?php
// modules-> divide and reuse codes
//Math.php
define( 'PI', 3.14);
function add($a,$b) {
echo $a+$b;
}
?>
<?php
//App.php
include ('Math.php');
echo PI;// 3.14
echo add(1,2);//3
?>
Why do I get this error, and how can the problem be fixed?