I have radio buttons that are to display a price, but i have sets of them (dif names)
i want the same page to call up the DB and get the price depending onthe radio button they choose. Is there a way to do this by using an update button, but so that the page with the radio buttons shows the price not the process.php page!
<form action="??" method="post">
<input name="1" type="radio" value="2"><br>
<input name="1" type="radio" value="2" ><br>
<input name="1" type="radio" value="3" ><br><br>
<input name="2" type="radio" value="1"><br>
<input name="2" type="radio" value="2"><br>
<input name="2" type="radio" value="3"><br><br>
<input name="Submit" type="button" value="submit">
</p>
</form>
I am real new to mysql, any help appreciated. I can process it on a diff page but not on the same!