Files
firstgarden-web-gnu/plugin/tcaptcha/run.php
2012-12-28 14:29:48 +09:00

8 lines
239 B
PHP

<?php
include_once("./_common.php");
include_once("$g4[path]/plugin/tcaptcha/tcaptcha.lib.php");
$tcaptcha = new tcaptcha("kr");
$tcaptcha->run();
die("{\"tcaptcha\":\"{$tcaptcha->question}\",\"token\":\"{$tcaptcha->token}\"}");
?>