国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1.5KB

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
  5. <title>选择内容模型</title>
  6. <link href="css/base.css" rel="stylesheet" type="text/css">
  7. </head>
  8. <body background='images/allbg.gif' leftmargin='8' topmargin='8'>
  9. <table width="98%" border="0" cellpadding="3" cellspacing="1" bgcolor="#D6D6D6" align="center">
  10. <form name="form1" action="co_add.php" method="get">
  11. <input type='hidden' name='step' value='1' />
  12. <tr>
  13. <td width="100%" height="28" colspan="3" background='images/tbg.gif' style="padding-left:10px;"><strong>选择内容模型</strong>
  14. </td>
  15. </tr>
  16. <tr>
  17. <td height="34" colspan="3" bgcolor="#FFFFFF">
  18. <select name="channelid" id="channelid" style="width:250px">
  19. <?php
  20. $dsql->SetQuery("Select id,typename From `#@__channeltype` where id in(1,2) order by id asc ");
  21. $dsql->Execute();
  22. while($row = $dsql->GetObject())
  23. {
  24. echo "<option value='{$row->id}'>{$row->typename}</option>\r\n";
  25. }
  26. ?>
  27. </select>
  28. </td>
  29. </tr>
  30. <tr>
  31. <td height="24" colspan="3" bgcolor="#F9FCEF">
  32. <input name="imageField" class="np" type="image" src="images/button_ok.gif" width="60" height="22" border="0">
  33. </td>
  34. </tr>
  35. </form>
  36. </table>
  37. </body>
  38. </html>