Server IP : 172.16.15.8 / Your IP : 18.191.107.181 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/cjmcgiveron/www/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php session_start(); // checks for the password $pass = $_SESSION['psw']; if($pass != "project") print "go away."; else { ?> <body style="background-color:grey;"> <CENTER> <Font color="purple"> <?php $STATUS= $_POST['status']; $COURSE= $_POST['course']; $SCORE= $_POST['SCORE']; $PART= $_POST['sSCORE']; $OVERALL= $_POST['oSCORE']; $GENDER= $_POST['gender']; $host = 'localhost'; $user = 'cjmcgiveron'; $passwd = 'cs480'; $database = 'cjmcgiveron'; $connect = mysqli_connect($host, $user, $passwd); $query = "insert into EVALUATION values ('$GENDER', '$STATUS', '$COURSE', '$SCORE', '$PART', '$OVERALL')"; mysqli_select_db($connect, $database); if(mysqli_query($connect, $query)) { print "Values inserted, Displaying Updated Table"; } else print "No values inserted, Displaying Table."; mysqli_close($connect); include ("evaluation_displayer.php"); ?> <HR> <P> <A HREF=index.php> HOME </A> <A HREF=evaluation_form.php> FORM </A> <A HREF=evaluation_homepage.php> HOMEPAGE </A> </font> </center> </body> <?php } ?>