?? special_join.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=4>合并專題</th>
</tr>
<form method="post" action="?mod=phpcms&file=special&action=join&channelid=<?=$channelid?>">
<tr align="center"><td colspan=2 class="tablerowhighlight">專題合并 - 源專題的文章全部轉入目標專題,同時刪除源專題</td></tr>
<tr>
<td class="tablerow" width="45%" align="right">源專題</td>
<td class="tablerow" width="55%">
<select name="sourcespecialid">
<option value="0"> - 無 - </option>
<?php
if(is_array($specials)){
foreach($specials as $special){
?>
<option value='<?=$special[specialid]?>'><?=$special[specialname]?></option>
<?php
}
}
?>
</select>
</td>
</tr>
<tr><td class="tablerow" width="40%" align="right">目標專題</td>
<td class="tablerow" width="60%">
<select name="targetspecialid">
<option value="0" selected="selected"> - 無 - </option>
<?php
if(is_array($specials)){
foreach($specials as $special){
?>
<option value='<?=$special[specialid]?>'><?=$special[specialname]?></option>
<?php
}
}
?>
</select>
</td></tr>
<tr align="center"><td class="tablerow" colspan=2 ><input type="submit" name="submit" value=" 合并 "></td></tr>
</form>
</table>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -