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

📄 download.php

📁 GForge 3.0 协作开发平台 支持CVS, mailing lists, bug tracking, message boards/forums, task management, perman
💻 PHP
字号:
<?php/**  *  * SourceForge Code Snippets Repository  *  * SourceForge: Breaking Down the Barriers to Open Source Development  * Copyright 1999-2001 (c) VA Linux Systems  * http://sourceforge.net  *  * @version   $Id: download.php,v 1.17 2001/05/22 16:12:12 pfalcon Exp $  *  */$no_gz_buffer=true;require_once('squal_pre.php');$sql="SELECT * FROM snippet_version WHERE snippet_version_id='$id'";$result=db_query($sql);if ($result && db_numrows($result) > 0) {	header('Content-Type: text/plain');	if (strlen(db_result($result,0,'code')) > 1) {		echo util_unconvert_htmlspecialchars( db_result($result,0,'code') );	} else {		echo 'nothing in here';	}} else {	echo 'Error';}?>

⌨️ 快捷键说明

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