Server IP : 172.16.15.8 / Your IP : 13.58.28.196 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/../home/ranicholson/public_html/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php session_start(); ?> <!-- File name: PatientInfoForm.php --> <?php $user = $_POST['user']; $_SESSION['usr'] = $user; $pass = $_POST['pass']; $_SESSION['psw'] = $pass; if($user != "cs480" or $pass != "hw12") print "go away."; else { ?> <CENTER> <h1> Project Home Page </h1> <hr> <Font color=black size=5> <Form action=a12pg3.html method=post> Welcome Students! </Font> <P> <Font color=red size=3> Click the link below to view the current Evaluation Table. <P> <A HREF=assignment11.php> Show Course Evaluation Table </A> <P> <P> Click the link below to fill out a Course Evaluation Form. <P> <A HREF=a12pg3.html> Proceed to Evaluation Form </A> </Font> <P> <hr> <Font size=1> <A HREF=index.html> Click this link to go back to Rodrick Nicholson's Homepage </A> </Font> </CENTER> <?php } ?>