|
Yeah, i don't understand why you've gotten no reply on this.
Radio buttons work just like the text field will in PHP, so there is nothing very complicated about it. PHP will place whatever the radio name and value is into the $_POST array, once the form has been submitted, ignoring the values not selected. So in your case, the Radio is called "ID103883" or whatever number goes after the ID bit, and lets say the user selected "true", to call this in PHP, we simply use $_POST['ID103883']
This variable calls, from the $_POST array (because you've used the POST method on your form, not GET) whatever value is associated with the key "ID103883".
I take it you know the SQL code for this? You'll also need to include the member ID in a hidden input somewhere in the HTML, otherwise you won't be able to identify where to update the database, and mySQL will cry.
__________________
A lie gets halfway around the world before the truth has a chance to get its pants on. - Sir Winston Churchill
Please visit my sites: Please login or register to view this content. Registration is FREE | Please login or register to view this content. Registration is FREE
|