field_edit_form.inc.php

来自「Phpcms2008 是一款基于 PHP+Mysql 架构的网站内容管理系统」· PHP 代码 · 共 22 行

PHP
22
字号
<table cellpadding="2" cellspacing="1">
	<tr> 
      <td>文本框长度</td>
      <td><input type="text" name="setting[size]" value="<?=$size?>" size="5"></td>
    </tr>
	<tr> 
      <td>允许上传的文件大小</td>
      <td><input type="text" name="setting[upload_maxsize]" value="<?=$upload_maxsize?>" size="5">KB 提示:1KB=1024Byte,1MB=1024KB *</td>
    </tr>
	<tr> 
      <td>允许上传的文件类型</td>
      <td><input type="text" name="setting[upload_allowext]" value="<?=$upload_allowext?>" size="50"></td>
    </tr>
	<tr> 
      <td>是否保存文件大小</td>
      <td><input type="radio" name="setting[issavefilesize]" value="1" <?=($issavefilesize ? 'checked' : '')?>/> 是 <input type="radio" name="setting[issavefilesize]" value="0" <?=($issavefilesize ? '' : 'checked')?>/> 否</td>
    </tr>
	<tr> 
      <td>文件下载方式</td>
      <td><input type="radio" name="setting[downloadtype]" value="0" <?=($downloadtype == 0 ? 'checked' : '')?>/> 链接文件地址 <input type="radio" name="setting[downloadtype]" value="1" <?=($downloadtype == 1 ? 'checked' : '')?>/> 通过PHP读取</td>
    </tr>
</table>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?