header_php.php
来自「Zen Cart是真正的电子商务艺术」· PHP 代码 · 共 23 行
PHP
23 行
<?php
/**
* @package Installer
* @access private
* @copyright Copyright 2003-2007 Zen Cart Development Team
* @copyright Portions Copyright 2003 osCommerce
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
* @version $Id: header_php.php 6981 2007-09-12 18:26:56Z drbyte $
*/
$zc_install->resetConfigKeys();
if (isset($_POST['submit'])) {
if (isset($_POST['license_consent']) && $_POST['license_consent'] == 'agree') {
header('location: index.php?main_page=inspect' . zcInstallAddSID() );
exit;
}
if (isset($_POST['license_consent']) && $_POST['license_consent'] == 'disagree') {
header('location: index.php' . zcInstallAddSID() );
exit;
}
}
?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?