列表登录页代码

家视野家居商城http://www.jiashiye.com

<?php
include "../include/head.php";
include "../include/cn.php";
include"../esifsf/fckeditor.php";
include"../include/fun.php";
$sql="select * from list_class";
$rs=mysql_query($sql)
?>

<body>
<table width="100%" border="1" cellspacing="1" cellpadding="1">
  <tr>
    <td align="center"><strong>列表模块内部管理</strong></td>
  </tr>
  <tr>
    <td><form id="form1" name="form1" method="post" action="submit.php?atc=ok">
      <table width="100%" border="1" cellspacing="1" cellpadding="1">
        <tr>
          <td width="15%" align="right" valign="top">关键字</td>
          <td width="85%"><input name="keywords" type="text" id="keywords" size="50" /></td>
        </tr>
        <tr>
          <td align="right" valign="top">关键字描述</td>
          <td><input name="ds" type="text" id="ds" size="50" /></td>
        </tr>
        <tr>
          <td align="right" valign="top">网页标题</td>
          <td><input name="pagetitle" type="text" id="pagetitle" size="50" /></td>
        </tr>
        <tr>
          <td align="right" valign="top">主题</td>
          <td><input name="title" type="text" id="title" size="50" /></td>
        </tr>
        <tr>
          <td align="right" valign="top">内容</td>
          <td><?php echo fck("content","../esifsf/","600","600","添加信息","Default")?></td>
        </tr>
        <tr>
          <td align="right" valign="top">类别</td>
          <td><select name="class" id="class">
          <option>--请选择类别--</option>
          <?php
          while ($rr=mysql_fetch_array($rs))
    {
    ?>
          <option value="<?php echo $rr["id"]?>"><?php echo $rr["title"]?></option>
          <?php
    }
    ?>
          </select></td>
        </tr>
        <tr>
          <td align="right" valign="top">作者</td>
          <td><input name="keywords2" type="text" id="keywords2" size="10" /></td>
        </tr>
        <tr>
          <td align="right" valign="top">&nbsp;</td>
          <td><input type="submit" name="button" id="button" value="提交信息" /></td>
        </tr>
      </table>
    </form></td>
  </tr>
</table>
</body>
</html>

原文地址:https://www.cnblogs.com/F-lower/p/3360508.html