Server IP : 172.16.15.8 / Your IP : 18.221.183.34 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/bddownum/public_html/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<!-- Braxton Downum Dr.Wang CS389 --> <?php session_start(); ?> <Body> <HR> <?php $class = $_SESSION['class']; $name = $_SESSION['name']; $a1 = $_POST['q1']; $a2 = $_POST['q2']; ?> <Center> <H2> Evaluation Results: </H2> <HR> <?php print "Students name: $name <P>"; print "Course choosen: $class <P>"; if($a1 == "SA") { print "Strongly agrees with question 1 <P>"; } if($a1 == "A") { print "Agrees with question 1 <P>"; } if($a1 == "D") { print "Disagrees with question 1 <P>"; } if($a2 == "SA") { print "Strongly agrees with question 2 <P>"; } if($a2 == "A") { print "Agrees with question 2 <P>"; } if($a2 == "D") { print "Disagrees with question 2 <P>"; }