If I fill in the form incorrectly in anyway, an error page is generated. But there is no any error message displayed.
In errorpage.php:
$error = $_SESSION[error];
...
echo $error;
In dbts_abvfp.php
$_SESSION[error] = $nderror;
I tested dbts_abvfp.php. The value passed from $nderror to $_SESSION is correct. dbts_abvfp.php calls errorpage.php successfully. But $_SESSION[error] is empty in errorpage.php. Obviously, the value is not passed from dbts_abvfp.php. to errorpage.php. This is original code from ABVFP. Anyone can help? Can anyone using ABVFP generate correct error message?
Jay
investmentinstock.com
In errorpage.php:
$error = $_SESSION[error];
...
echo $error;
In dbts_abvfp.php
$_SESSION[error] = $nderror;
I tested dbts_abvfp.php. The value passed from $nderror to $_SESSION is correct. dbts_abvfp.php calls errorpage.php successfully. But $_SESSION[error] is empty in errorpage.php. Obviously, the value is not passed from dbts_abvfp.php. to errorpage.php. This is original code from ABVFP. Anyone can help? Can anyone using ABVFP generate correct error message?
Jay
investmentinstock.com
Comment