here is the code i have so far, but fourth page still shows the score from the second
*****************************************************
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Quiz</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<table width="75%" border="0">
<tr>
<td><form name="form1" method="post" action="question2.php">
<table width="100%" border="1">
<tr>
<td height="112">
<p>Your point</p>
<p><img src="0.gif" width="70" height="70"></p>
</td>
</tr>
</table>
<table width="100%" border="1">
<tr>
<td colspan="2"><p>Question: 1</p>
<p>What is your favorite color?</p></td>
</tr>
<tr>
<td>A.
<input type="radio" name="q1" value="1"> </td>
<td width="93%">Red</td>
</tr>
<tr>
<td>B.
<input type="radio" name="q1" value="2"></td>
<td>Blue</td>
</tr>
<tr>
<td>C.
<input type="radio" name="q1" value="3"></td>
<td>Green</td>
</tr>
<tr>
<td>D.
<input type="radio" name="q1" value="4"></td>
<td>Yellow</td>
</tr>
<tr>
<td height="28"></td>
<td><input type="hidden" name="Submit" value="Submit"></td>
</tr>
</table>
</form></td>
</tr>
</table>
</body>
</html>
******************************************************
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Quiz</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<table width="75%" border="0">
<tr>
<td><form name="form1" method="post" action="question3.php">
<table width="100%" border="1">
<tr>
<td height="112"> <p>Your point</p>
<?php
$point = 0;
if ($q1 == 1)
{
$point ++;
}
print("<img src='$point'.gif/></p></td>"

?>
</tr>
</table>
<table width="100%" border="1">
<tr>
<td colspan="2"><p>Question: 1</p>
<p>What is your favorite color?</p></td>
</tr>
<tr>
<td>A.
<input type="radio" name="q2" value="1"> </td>
<td width="93%">Red</td>
</tr>
<tr>
<td>B.
<input type="radio" name="q2" value="2"></td>
<td>Blue</td>
</tr>
<tr>
<td>C.
<input type="radio" name="q2" value="3"></td>
<td>Green</td>
</tr>
<tr>
<td>D.
<input type="radio" name="q2" value="4"></td>
<td>Yellow</td>
</tr>
<tr>
<td height="28"></td>
<td><input type="hidden" name="Submit" value="Submit"></td>
</tr>
</table>
</form></td>
</tr>
</table>
</body>
</html>
*******************************************************
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Quiz</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<table width="75%" border="0">
<tr>
<td><form name="form1" method="post" action="question4.php">
<table width="100%" border="1">
<tr>
<td height="112"> <p>Your point</p>
<?php
$pointafter = $point;
if ($q2 == 1)
{
$pointafter ++;
}
print("<img src='$pointafter'.gif/></p></td>"

?>
</tr>
</table>
<table width="100%" border="1">
<tr>
<td colspan="2"><p>Question: 1</p>
<p>What is your favorite color?</p></td>
</tr>
<tr>
<td>A.
<input type="radio" name="q3" value="1"> </td>
<td width="93%">Red</td>
</tr>
<tr>
<td>B.
<input type="radio" name="q3" value="2"></td>
<td>Blue</td>
</tr>
<tr>
<td>C.
<input type="radio" name="q3" value="3"></td>
<td>Green</td>
</tr>
<tr>
<td>D.
<input type="radio" name="q3" value="4"></td>
<td>Yellow</td>
</tr>
<tr>
<td height="28"></td>
<td><input type="submit" name="Submit" value="Submit"></td>
</tr>
</table>
</form></td>
</tr>
</table>
</body>
</html>
***************************************************