Server IP : 172.16.15.8 / Your IP : 3.14.145.167 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/pgyoungmills/www/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php session_start(); ?> <?php $pass = $_SESSION['psw']; // $_SESSION['psw'] = $pass; $name = $_SESSION['name']; $gender = $_SESSION['gender']; //$_SESSION['gender']= $gender; $year = $_SESSION['year']; //$_SESSION['year'] = $year; $course = $_SESSION['course']; //$_SESSION['course'] = $course; $first = $_POST['q1']; $firstc =$_POST['q1c']; $second = $_POST['q2']; $secondc = $_POST['q2c']; $third = $_POST['q3']; $thirdc = $_POST['q3c']; $fourth = $_POST['q4']; $fourthc = $_POST['q4c']; if($pass != "ch7hw") print "Go away."; else { print "$name, $gender, $year, $course<BR>"; print "$first $firstc<BR>"; print "$second $secondc<BR>"; print "$third $thirdc<BR>"; print "$fourth $fourthc<BR>"; } ?>