How many web pages or links do i need?
Page 1 of 1
How many web pages or links do i need?
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? thanksRe: How many web pages or links do i need?
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>
Re: How many web pages or links do i need?
there is no limit, as many there should be as much benefit for us.Page 1 of 1