www.gusucode.com > citySHOP B2C商城系统 进销存 2.0.6码程序 > upload/seccode.php

    <?php
include './include/common.inc.php';
include_once (APP_ROOT . './include/seccode.class.php');
$scode = authcode(rawurldecode($seccodeauth), 'DECODE', $authkey);

@header("Expires: -1");
@header("Cache-Control: no-store, no-cache, post-check=0, pre-check=0, max-age=0", false);
@header("Pragma: no-cache");

$code = new seccode();
$code->code = $scode;
$code->type = 0;
$code->width = 70;
$code->height = 21;
$code->background = 1;
$code->adulterate = 1;
$code->ttf = 1;
$code->angle = 0;
$code->color = 1;
$code->size = 0;
$code->shadow = 1;
$code->animator = 0;
$code->fontpath = APP_ROOT . 'images/fonts/';
$code->datapath = APP_ROOT . 'images/';
$code->includepath = '';
$code->display();
?>