Re: How to display ALL session variables?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



2007/10/18, Nathan Nobbe <quickshiftin@xxxxxxxxx>:
>
> On 10/18/07, Ronald Wiplinger <ronald@xxxxxxxxx> wrote:
> >
> > Is there a simple way to display all session variables? Like the code
> > below I use in debug for all posted variables:
> >
> > echo "<h3>posted variables</h3>";
> >   while (list($name, $value) = each($HTTP_POST_VARS)) {
> >     echo "$name = $value<br>\n";
> >   }
> >
>
> echo '<pre>';
> var_dump($_SESSION);
> echo '</pre>';
>
> -nathan


or use print_r($_SESSION);

[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux