can anyone tell me how i can fix the following problem:
through a link carrying a name and corresponding value
(<a href="explanation.php3?cc_select=p001">more info...</a>
people reach the explanation.php3 file which contains the following:
<form> (second form)
if ($cc_selct==p001)
{
$info="yada yada,,,,,";
}
print ("<input type=\"text\" name=\"cc1\" size=\"30\" /readonly/ value=\"$info\">");
</form>(second form)
in this file a roll box that submits on change has to be chosen. howerver
<form action="order.php3" method="get"> <select name="selectAorB" class="pulldown" onchange="submit()">
<option value="001">Method A</option>
<option value="002">Method B</option>
</form>
however when the choice between a and b is made i loose the other printed variables,
Help is needed because i can think of a way to do this..
thanks