📄 customtags.inc
字号:
<?php/**************************************************************************** copyright : (C) 2001-2003 Advanced Internet Designs Inc.* email : forum@prohost.org* $Id: customtags.inc,v 1.3 2003/12/18 15:46:40 iliaa Exp $** This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2 of the License, or * (at your option) any later version.***************************************************************************/function ctag_rebuild_cache($id){ $ct = ''; $c = uq('SELECT name FROM '.$GLOBALS['DBHOST_TBL_PREFIX'].'custom_tags WHERE user_id='.$id.' ORDER BY name'); while ($r = db_rowarr($c)) { $ct .= $r[0] . '<br />'; } q("UPDATE ".$GLOBALS["DBHOST_TBL_PREFIX"]."users SET custom_status='".addslashes(substr($ct, 0, -6))."' WHERE id=".$id);}?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -