HTML page content PHP Page
Category Archives: php
Difference between count() and sizeof() in php
Both count() and sizeof() returns number of elements in an array. sizeof() is an alias of count().
How to print HTML form data using php
HTML code PHP Code
Find the Factorial of number in 2 ways using PHP
Iterative way of finding factorial of a given number Recursive way of finding factorial of a given number