form_true_false_elem.inc
上传用户:xiao730204
上传日期:2007-01-04
资源大小:141k
文件大小:1k
源码类别:

WEB邮件程序

开发平台:

PHP

  1. <?php echo $template_obj->GetValue( 'default_row_start' ); ?>
  2.    <td>
  3.    <?php echo $template_obj->GetValue( 'default_font' ); ?>
  4.    <b><?php echo $desc_text; ?> :</b>
  5.    </td>
  6.    <td>
  7.    <?php echo $template_obj->GetValue( 'default_font' ); ?>
  8.    <select name="<?php echo $name; ?>">
  9.    <option <?php if ( $value == true   || $value == 'true' ) { echo( 'selected' ); } ?> value="true">True</option>
  10.    <option <?php if ( $value != true   && $value != 'true' ) { echo( 'selected' ); } ?> value="false">False</option>
  11.    </select>
  12. </tr>
  13. <?php if ( $desc != '' ) { ?>
  14. <?php echo $template_obj->GetValue( 'default_row_start' ); ?>
  15.    <td colspan="2">
  16.    <?php echo $template_obj->GetValue( 'default_font' ); ?>
  17.    <?php echo $desc; ?>
  18.    </td>
  19. </tr>
  20. <?php } ?>