Can someone help me get image verification working on this? Here's what I have so far:
you need to add the following code to index.php
Code:
require_once(DIR . '/includes/functions_regimage.php');
$imagehash = fetch_regimage_hash();
then this should display the image on the template page you want the quick registration to display on:
Code:
<img src="image.php?$session[sessionurl]type=regcheck&imagehash=$imagehash" alt="$vbphrase[registration_image]" width="201" height="61" border="0" />
then you would just need this text box below the image for the person to fill in:
Code:
<input type="text" class="bginput" name="imagestamp" size="50" maxlength="6" /><input type="hidden" name="imagehash" value="$imagehash" />
the problem I've come across is that I'm unable to get the proper image to display because the $imagehash variable seems to be unavailable on the homepage template (I'm using vBA CMPS for my homepage - but that shouldn't matter).
Can anyone help me get this done?
Thanks you in advance,
John