form_true_false_elem.inc
上传用户:xiao730204
上传日期:2007-01-04
资源大小:141k
文件大小:1k
- <?php echo $template_obj->GetValue( 'default_row_start' ); ?>
- <td>
- <?php echo $template_obj->GetValue( 'default_font' ); ?>
- <b><?php echo $desc_text; ?> :</b>
- </td>
- <td>
- <?php echo $template_obj->GetValue( 'default_font' ); ?>
- <select name="<?php echo $name; ?>">
- <option <?php if ( $value == true || $value == 'true' ) { echo( 'selected' ); } ?> value="true">True</option>
- <option <?php if ( $value != true && $value != 'true' ) { echo( 'selected' ); } ?> value="false">False</option>
- </select>
- </tr>
- <?php if ( $desc != '' ) { ?>
- <?php echo $template_obj->GetValue( 'default_row_start' ); ?>
- <td colspan="2">
- <?php echo $template_obj->GetValue( 'default_font' ); ?>
- <?php echo $desc; ?>
- </td>
- </tr>
- <?php } ?>