Posted by Janwillem Borleffs on 04/17/06 16:00
Smokey wrote:
> if ((isset($_SESSION['$_SESSION['CouponCodeSes']']))
>
Assuming 'CouponCodeSes' contains a reference to another key in the
$_SESSION array:
if (isset($_SESSION[$_SESSION['CouponCodeSes']])
Otherwise, when "$_SESSION['CouponCodeSes']" is to be considered a literal
string:
if (isset($_SESSION['$_SESSION[\'CouponCodeSes\']'])
JW
[Back to original message]
|