trove_cat.php

来自「GForge 3.0 协作开发平台 支持CVS, mailing lists, 」· PHP 代码 · 共 40 行

PHP
40
字号
<?php/**  *  * SourceForge Help Facility  *  * SourceForge: Breaking Down the Barriers to Open Source Development  * Copyright 1999-2001 (c) VA Linux Systems  * http://sourceforge.net  *  * @version   $Id: trove_cat.php,v 1.9 2001/05/22 19:11:23 pfalcon Exp $  *  */require_once('pre.php');$res_cat = db_query("	SELECT *	FROM trove_cat	WHERE trove_cat_id='$trove_cat_id'");if (db_numrows($res_cat)<1) {	print $Language->getText('help_trove_cat','no_such_category');	exit;}$row_cat = db_fetch_array($res_cat);help_header("Trove Category - ".$row_cat['fullname']);print '<table width="100%" cellpadding="0" cellspacing="0" border="0">'."\n";print '<tr><td>'.$Language->getText('help_trove_cat','full_category_name').':</td><td><strong>'.$row_cat['fullname']."</strong></td>\n";print '<tr><td>'.$Language->getText('help_trove_cat','short_name').':</td><td><strong>'.$row_cat['shortname']."</strong></td>\n";print "</table>\n";print '<p>'.$Language->getText('help_trove_cat','description').':<br /><em>'.$row_cat['description'].'</em>'."</p>\n";help_footer();?>

⌨️ 快捷键说明

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