We recently upgraded PHP and variables that were once passed through the URL are no longer
recognized.
Example:
Within the test.php code:
<?php
session_start() ;
$defectID = (int)$defectID;
if ( $defectID != 2 ) {
// This should not execute, but does.
echo "Error: $defectID";
exit;
}
?>
Help?
recognized.
Example:
Within the test.php code:
<?php
session_start() ;
$defectID = (int)$defectID;
if ( $defectID != 2 ) {
// This should not execute, but does.
echo "Error: $defectID";
exit;
}
?>
Help?
Comment