Hello,
I have a really easy (I hope) question but have come you a blocking point
and need some help...
My web page contains both standard HTML and PHP code. No problem there... On
one page after the user logs in I set a session variable $_SESSION['fName']
= $fName // $fName is passed to the function. When I draw this page the
variable in $_SESSION['fName'] echo's correctly and I can go to other pages
and it will still be there correctly. However, I need more than one variable
$_SESSION['account']=$eMailAddr where $eMailAddr = their email address. If I
add this to the code where I set $_SESSION['fName] it all echoes correctly
on the first page, however, if I got to another page only the ['fName]
echoes, ['account] does not. Any suggestions? Remember this php code is
imbedded in an HTML page.
Thanks,