I have a form with several types of fields on it including some radio buttons. When I try to write the data to a mysql database all of the radio button fileds are undefined.
I tried to go to the database and put a default for each of the radio button fields - a "U". No help.
I put "checked" with the first choice of the radio field. No help.
I tried to initialize the radio fields just before writing them to the db but I must be doing something wrong.
if (!isset($EngineType) {
$EngineType = "U";
}
I am sure you guys have run into this problem b4.
What is the solution?