Forum Moderators: open
You can probably achieve this with JavaScript.
I'm no hotshot with JavaScript but this is from another forum I found:
<form method="post">
<input type="radio" id="r_action" name="r_action" value="r_action" onClick="this.form.action='your_script.php';this.form.submit()">
</form>
In your_script.php file you collect the data from post variable and send it to the database.