Hi,
I am using the following code to read the session variable and set it as value for input textbox:
value="<?php if ($_SESSION["activation_email"] != NULL) echo $_SESSION["activation_email"]; ?>"
it was set in another code like this:
$_SESSION["activation_email"] = $member_email;
but I am getting the following error inside the textbox:
<br /><b>Notice</b>: Undefined index: activation_email in <b>C:\xampp\htdocs\xoompage\activation.php</b> on line <b>21</b><br />
just a note that the above error is NOT shown every time... it's just sometimes but I am not sure why?