gusucode.com > 同城苏州黄页系统php源码程序 > mod.php/verifycode.php

    <?
include('start.php') ;
include($root_path.'lib/verifycode.class.php');

$vc =& new verifycode();
$vc->show_prompt = true ;

$vc->img_height = 60 ;
$vc->img_width = 120 ;
$vc->font_size = 18 ;
$vc->font_top = 26 ;

$vc->create_code(4) ;

$vc->out_img() ;
//pp($_SESSION) ;
exit() ;

?>