diff --git a/PHP/Nth Fibonacci Term.php b/PHP/Nth Fibonacci Term.php new file mode 100644 index 0000000..9723606 --- /dev/null +++ b/PHP/Nth Fibonacci Term.php @@ -0,0 +1,31 @@ +Nth term of the Fibonacci series is : "; +echo "\n"; + +// Calling recursive function to calculate and +// print Nth term of the Fibonacci Series +echo Fibonacci($n); + +?>