I am currently using a simple captcha script and am using a PHP file to create the image and using session_start() and $_SESSION['securitycode'] to set the actual text when it generates. The problem is its not storing the session variable.
Any suggestions or reasons why a $_session variable would not 'stick'? Is there a setting somewhere? I created a much simpler session file to test and it worked as follows:
<?php
session_start();
$SESSION['views'] = 4; // store session data
echo "Pageviews = ". $SESSION['views']; //retrieve data
?>
For whatever reason my 2 page captcha test is not working. First page is the form and the second page is the <img src="captchapage.php"> and then I submit and test that the text box that is filled out matches the captcha securitycode that I set with $_session
thanks in advance!
Ronnie
Online Backup