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

📄 ucp_confirm.php

📁 这些都是我以前学习是用到的源码
💻 PHP
字号:
<?php/** ** @package VC* @version $Id: ucp_confirm.php,v 1.25 2006/11/03 23:09:15 davidmj Exp $* @copyright (c) 2005 phpBB Group * @license http://opensource.org/licenses/gpl-license.php GNU Public License **//*** ucp_confirm* Visual confirmation** Note to potential users of this code ...** Remember this is released under the _GPL_ and is subject* to that licence. Do not incorporate this within software * released or distributed in any way under a licence other* than the GPL. We will be watching ... ;)** @package VC*/class ucp_confirm{	var $u_action;	function main($id, $mode)	{		global $db, $user, $phpbb_root_path, $config, $phpEx;		// Do we have an id? No, then just exit		$confirm_id = request_var('id', '');		$type = request_var('type', 0);		if (!$confirm_id || !$type)		{			exit;		}		// Try and grab code for this id and session		$sql = 'SELECT code  			FROM ' . CONFIRM_TABLE . " 			WHERE session_id = '" . $db->sql_escape($user->session_id) . "' 				AND confirm_id = '" . $db->sql_escape($confirm_id) . "'				AND confirm_type = $type";		$result = $db->sql_query($sql);		$row = $db->sql_fetchrow($result);		$db->sql_freeresult($result);		// If we have a row then grab data else create a new id		if (!$row)		{			exit;		}		if ($config['captcha_gd'])		{			include($phpbb_root_path . 'includes/captcha/captcha_gd.' . $phpEx);		}		else		{			include($phpbb_root_path . 'includes/captcha/captcha_non_gd.' . $phpEx);		}		$captcha = new captcha();		$captcha->execute($row['code']);		exit;	}}?>

⌨️ 快捷键说明

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