Parse error: syntax error, unexpected '<' in... functions.php on line 329

Discussion in 'WordPress' started by remi1210, Oct 19, 2011.

  1. #1
    Hello, earlier I was trying to put in a drop down menu to my site using the functions.php and I wound up getting the following message...

    Parse error: syntax error, unexpected '<' in ........... functions.php on line 329

    I inserted the original functions.php and I continue to get the same message. Here are lines 321-338... Please Help! Thanks

    <?php
    break;


    case "checkbox":
    ?>
    <tr>
    <td width="40%" rowspan="2" valign="middle"><strong><?php echo $value['name']; ?></strong></td>
    <td width="60%"><?php if(get_settings($value['id']) == "true"){ $checked = "checked=\"checked\""; }else{ $checked = ""; } ?>
    <input type="checkbox" name="<?php echo $value['id']; ?>" id="<?php echo $value['id']; ?>" value="true" <?php echo $checked; ?> />
    </td>
    </tr>

    <tr>
    <td><small><?php echo $value['desc']; ?></small></td>
    </tr><tr><td colspan="2" style="">&nbsp;</td></tr><tr><td colspan="2">&nbsp;</td></tr>


    <?php break;


    }
    }
    ?>
     
    remi1210, Oct 19, 2011 IP