In message <[EMAIL PROTECTED]>, Mike <[EMAIL PROTECTED]> writes >also - not sure why you are using the curly braces > >Best Regards, >Mike
How would you do it?
echo " admin = $_SESSION['admin'] <br />";
gives a syntax error.
echo ' admin = '.$_SESSION['admin'].'<br />';
seems more complicated to write, and less legible.
echo " admin = {$_SESSION['admin']} <br />";
is what I would use.
--
Pete Clark
Sunny Andalucia
http://www.hotcosta.com/comm_1.htm
