alright, I figured out how to use vbulletin's human verification system on our custom page as described below:-
PHP Code:
require_once(DIR . '/includes/class_humanverify.php');
$verify =& vB_HumanVerify::fetch_library($vbulletin);
$human_verify = $verify->output_token();
//Then on form submit
$vbulletin->input->clean_gpc('r', 'humanverify', TYPE_ARRAY);
require_once(DIR . '/includes/class_humanverify.php');
$verify =& vB_HumanVerify::fetch_library($vbulletin);
if (!$verify->verify_token($vbulletin->GPC['humanverify']))
{
eval(standard_error(fetch_error($verify->fetch_error())));
}
And simply having $human_verify in the associated template does the job.
NOW, this creates a predefined humanverify layout in a fieldset with some default text saying
Please enter the six letters or digits that appear in the image opposite.
How do I remove that text or how do I modify the xhtml that comes with it??
Thanks
--------------- Added [DATE]1229465254[/DATE] at [TIME]1229465254[/TIME] ---------------
ahh its so easy. Just found there is a set of Human Verification templates. great!
thanks