Hi,
I am coding something related with session variables and this is what is going on:
echo $_SESSION['WHERE'] . "<br />";
$WHERE = "WHERE `persInfo_appDate` BETWEEN '$daterangeFrom' AND $daterangeTo'";
echo $_SESSION['WHERE'] . "<br />";
The output is:
WHERE persInfo_appDate BETWEEN '2011-04-22' AND '2011-06-22' AND persInfo_divSelect = 'Harper'
WHERE persInfo_appDate BETWEEN '2011-04-22' AND '2011-06-22'
The first and the second echos' are different, but I am only changing the variable $WHERE, is it possible that the session variable is being referenced to $WHERE?
Thanks