> index.php:
> <?
> session_start
> read in $array from csv file
> ?>
>
> <frameset...
> menu
> content
>
>
> and now: how can i continue the session in the content pages?
In each content page, add:
<?php
session_start();
?>
You may wish to session_register('array'); in your index.php page if you're
trying to do what I think you're trying to do... You want that array in
both content pages?
--
Visit the Zend Store at http://www.zend.com/store/
Wanna help me out? Like Music? Buy a CD: http://l-i-e.com/artists.htm
Volunteer a little time: http://chatmusic.com/volunteer.htm
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]