My site nice work on php version 5.2.12, but now php version is changed to 5.2.17 and some code is not working.
It showing error:
"Notice: Undefined variable: newCode in ....../humancheck.php on line 29"
In file humancheck.php on line 29:
Code: Select all
for($i=0; $i<$config_max_digits;$i++) $newCode = $newCode.rand(0,9); Code: Select all
session_start();
$newCode = $HTTP_SESSION_VARS["newCode"];
Code: Select all
require ('human_check/humancheck.php');
When I call the index.php file it shows error.<IMG src="humancheck_showcode.php">
So, I think, that variable "newCode" should be taken from file humancheck_showcode.php, but it don't do that.