⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 adm_preview.php

📁 这个版本只是修正了一些BUG
💻 PHP
字号:
<?php
/**********************************************
	adm_preview.php

	Version  : 1.2
	Author   : Tracemouse (tracemouse@msn.com)
	Copyright: www.vitci.com
	Writed   : 2003/10/20
	Modified : 2004/04/18
***********************************************/
require "./common.php";
$file_name='adm_preview.php';

$bid=intval($bid);
if($action=='del')
{
  	if($query=$db->query("DELETE FROM $table_banners WHERE bid = $bid"))
  	{
  		gotourl($language['delsuccess'],'./adm_banner.php');
  	}
  	else
  	{
    		gotourl($language['db_err']);
  	}

}
$query=$db->query("SELECT * FROM $table_banners WHERE bid = $bid");
if($dbq_rec=$db->fetch_array($query))
{
  	$fileurl=$dbq_rec['fileurl'];
  	if (!strpos($fileurl,'http://'))
  	{
  		$fileurl="../".$fileurl;
	}
  	$filetype=$dbq_rec['type'];
  	$subject=$dbq_rec['subject'];
}

include template('preview');
?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -