php menu driven application
Program 1 <html> <body> <center> <table border=1> <tr bgcolor=yellow><th >————Menu Application———-</th></tr> <tr bgcolor=cyan> <td>1. Factorial Of Number</td> </tr> <tr bgcolor=green> <td>2. Reverse Of Number</td> </tr> <tr> <td>3. Palindrom Number</td> </tr> <tr bgcolor=blue> <td>4. Armstrong...
Program 1 <?php include ‘MenuApplication.php’?> <html> <head><title>Factorial Page</title></head> <body> <center> <br><h5>Enter A Number</h4> <form method=post action=factorial.php> <input type=text name=txnumber> <input type=submit value=submit name=btnsubmit1> </form> <?php if(isset($_POST[‘btnsubmit1’])) { $n=$_POST[‘txnumber’]; $f=1; while($n!=0) { $f=$f*$n; $n–; }...