?? deleteentrydialog.php
字號:
/*
版權歸原作者
漢化:slender
我們的目標
做專業的blog中心!
http://phpstu.uni.cc
*/
<?header("content-Type: text/html; charset=gb2312");?>
<?php
class DeleteEntryDialog
{
var $info;
var $referer;
function DeleteEntryDialog( $info, $referer )
{
$this->info = $info;
$this->referer = $referer;
}
function printWidget()
{
global $PHP_SELF;
?>
<form name="NewEntry" action="<?= $PHP_SELF ?>" method="post">
<input type="hidden" name="_a" value="刪除該blog">
<input type="hidden" name="id" value="<?= $this->info['id'] ?>">
<input type="hidden" name="referer" value="<?= $this->referer ?>">
<table>
<tr>
<td class="ContentHeader">標題</td>
<td class="ContentNormal"><?= $this->info['title'] ?></td>
</tr>
<tr>
<td valign="top"></td>
<td>
<input type="submit" value="刪除">
<input name="Button" type="button" value="取消" onClick="window.close()"> </td>
</tr>
</table>
</form>
<?php
}
}
?>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -