--- title: PHP Factorial program using GMP Functions date: 2012-06-04 17:13:14 categories: - Codes tags: - code-example - php --- Regular working with arbitrary number is usually a tough job, normally for generating factorial number using the regular looping methods you can generate only upto 170, and it doesn't work for huge numbers. **GMP** is a free library for arbitrary precision arithmetic, operating on signed integers, rational numbers, and floating point numbers. GMP functions allow you to work with arbitrary-length integers using the GNU MP library. You may need to do the initializations of GMP onto the server side if it don't work directly, read on php.net for it. For complete reference on GMP functions [visit here](http://www.php.net/manual/en/ref.gmp.php). The following code accepts a number from user and on the server side it is checked if numeric and passed onto the `gmp_fact()` method which returns the factorial of it and output is displayed on the screen. #### gmp_try.php ```php \'; } else { echo \'Enter proper number
\'; } } ?>
Enter Number:
```