index.php
<?php
require_once('fr.php');
header('Location:'.abspath().directory());
?>
fr.php
<?php
require_once('functions.php');
?>
functions.php
function abspath()
{
return $_SERVER['DOCUMENT_ROOT'];
}
Now when i go to index.php, it gives me this error:-
Fatal error: Call to undefined function abspath() in C:\xampp\htdocs\index.php on line 3