Notice: Undefined variable: newCode
Posted: Mon Jun 09, 2014 9:23 am
Hello! Help me please!
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:
This variable $newCode, it seems, taken from another file - humancheck_showcode.php:
And, in index.php file at the beginning of the file written:
And, in index.php file below is written:
So, I think, that variable "newCode" should be taken from file humancheck_showcode.php, but it don't do that.
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.