Files
2017-03-02 20:30:40 -06:00

10 lines
341 B
PHP
Executable File

<?php
if (!defined('CC_INI_SET')) die("Access Denied");
if(isset($_GET['esc'])) {
require("classes".CC_DS."gd".CC_DS."gd.inc.php");
$spamCode = fetchSpamCode($_GET['esc']);
$config = fetchDbConfig("config");
$img = new gd(CC_ROOT_DIR.CC_DS."images".CC_DS."random".CC_DS."verify.png",120,40);
$img->randImage($spamCode['SpamCode']);
}
?>