all these:
<tr>
<td class="text"> <?=$value3?>:</td>
<td><INPUT TYPE="RADIO" NAME="conference1" VALUE="$value3"> </td>
</tr>
should be changed to:
<tr>
<td class="text"> <?=$value3?>:</td>
<td><INPUT TYPE="RADIO" NAME="conference1" VALUE="<?php echo $value3; ?>"> </td>
</tr>
where are you getting the values of $value3.
I would recommand using the <?php ?> rather than short version of <? ?>.
Other thing you can do would be to check if some radio button is checked or not.
if ( isset( conference1 ) )
{
//do your stuff here
}
else
{
//display error message
}
One more thing:
\\ update conference1
if (conference1 == "$value6"){
$sql ="UPDATE league SET conference1='$value6'";
$result = mysql_query($sql);
if(!$result){
echo "Error inserting your information into MySQL' mysql_error()";
} else{
if (conference1 == "$value3"){
$sql ="UPDATE league SET conference1='$value3'";
$result = mysql_query($sql);
if(!$result){
echo "Error inserting your information into MySQL' mysql_error()";
}
}
}
}
the if else conditions are wrongly coded.
\\ update conference1
if (conference1 == "$value6")
{
$sql ="UPDATE league SET conference1='$value6'";
$result = mysql_query($sql);
if(!$result)
{
echo "Error inserting your information into MySQL' mysql_error()";
}
}
else
{
if (conference1 == "$value3")
{
$sql ="UPDATE league SET conference1='$value3'";
$result = mysql_query($sql);
if(!$result){
echo "Error inserting your information into MySQL' mysql_error()";
}
}
}
the better you organize your code the easy is it to find errors .