?? skin_add.php
字號:
<?php
defined('IN_PHPCMS') or exit('Access Denied');
include admintpl('header');
?>
<body>
<table cellpadding="0" cellspacing="0" border="0" width="100%" height="10">
<tr>
<td></td>
</tr>
</table>
<?=$menu?>
<table cellpadding="0" cellspacing="0" border="0" width="100%" height="10">
<tr>
<td></td>
</tr>
</table>
<table cellpadding="2" cellspacing="1" class="tableborder">
<tr>
<th colspan=2>添加風格</th>
</tr>
<form method="post" action="?mod=<?=$mod?>&file=<?=$file?>&action=<?=$action?>&save=1">
<tr>
<td class="tablerow" width="25%">選擇風格所屬方案</td>
<td class="tablerow">
<input type="hidden" name="module" value="<?=$module?>">
<select name="projectid">
<?php
if(is_array($projects)){
foreach($projects as $project){
echo "<option value='".$project['projectid']."'>".$project['projectname']."</option>\n";
}
}
?>
</select>
</td>
</tr>
<tr>
<td class="tablerow">選擇風格目錄</td>
<td class="tablerow">
<select name="skin">
<?php
if(is_array($newskins)){
foreach($newskins as $newskin){
echo "<option value='".$newskin."'>".$newskin."</option>\n";
}
}
?>
</select>
</td>
</tr>
<tr>
<td class="tablerow">風格名稱(可以是中文)</td>
<td class="tablerow"><input size=40 name="skinname" type=text ></td>
</tr>
</table>
<table width="100%" height="25" border="0" cellpadding="0" cellspacing="0">
<tr>
<td align="center"><input type="submit" name="submit" value=" 保存風格 "></td>
</tr>
</table>
</form>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -