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

📄 nodexsl.php

📁 KBS的BBS源码
💻 PHP
字号:
<?phprequire("pcfuncs.php");$userid = addslashes($_GET["id"]);$uid = (int)($_GET["id"]);$link = pc_db_connect();$pc = pc_load_infor($link,$userid,$uid);if(!$pc){	pc_db_close($link);	html_init("gb2312",$pcconfig["BBSNAME"]."Blog");			html_error_quit("对不起,您要查看的Blog不存在");	exit();}$query = "SELECT nodexsl , stylesheet FROM userstyle WHERE uid = ".$pc["UID"]." LIMIT 0 , 1;";$result = mysql_query($query,$link);$rows = mysql_fetch_array($result);mysql_free_result($result);pc_db_close($link);if(!$rows){	html_init("gb2312",$pcconfig["BBSNAME"]."Blog");			html_error_quit("对不起,您要查看的用户尚未设定自定义XSL文件");	exit();}if( $rows[stylesheet] == 1 ){	header("Content-Type: text/css");	header("Content-Disposition: inline;filename=SMTHBlog_".$pc["USER"].".css");}else{	header("Content-Type: text/xml");	header("Content-Disposition: inline;filename=SMTHBlog_".$pc["USER"].".xsl");}echo stripslashes($rows[nodexsl]);?>

⌨️ 快捷键说明

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