Login | Register | FAQ
Anonymous

How many web pages or links do i need?

+ Post a reply

Page 1 of 1


How many web pages or links do i need?

by Ibironke » Wed Apr 25, 2012 4:40 pm

I am trying to learn concerning my project in school,my topic is ELECTRONIC DIAGNOSIS SYSTEM.Been following the lectures and have tried a few pages but the problem is,how do i connect that when a patient clicks on different symptoms,my web page accumulates the results and show them?example,if i click on dizziness and vomitting,how do i connect to bring out pregnancy tests? thanks
User avatar

Ibironke

  • Posts: 1
  • Joined: Fri Apr 20, 2012 10:55 am

Re: How many web pages or links do i need?

by XainPro » Thu Apr 26, 2012 1:35 pm

Make a HTML Form in which user feed his/her symptoms and on the basis of his/her selection a PHP code will show the result or out come.
Note: I am not going to do your home work its just an idea !
try to learn it and do it its easy.
for php learning refer to html.net php learning tutorials.
http://html.net/tutorials/php/

Code: Select all
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Page 1</title>

</head>
<body>

<form method="post" action="result.php">
Name: <input type="text" name="name"  /><br />
Gendar: <select name="gendar">
<option value="male">MALE</option>
<option value="female">FEMALE</option>
</select><br />
Age: <input type="text" name="age" /><br />
Symptom 1 :
<select name="s1">
<option value="dizziness">Dizziness</option>
<option value="vomitting">Vomitting</option>
</select><br />
Symptom 2 :
<select name="s2">
<option value="dizziness">Dizziness</option>
<option value="vomitting">Vomitting</option>
</select><br />
<input type="submit" value="Check" />
</form>
</body>
</html>
User avatar

XainPro

  • Posts: 2001
  • Joined: Fri Feb 17, 2012 8:10 pm

Re: How many web pages or links do i need?

by sigma-sem » Fri May 18, 2012 12:54 pm

there is no limit, as many there should be as much benefit for us.
User avatar

sigma-sem

  • Posts: 1
  • Joined: Wed Apr 25, 2012 12:20 pm


+ Post a reply

Page 1 of 1