Hello.

I have a flash movie embeded into the php page. This movie sends the variable Bookresult to PHP. So far this works fine. But each time it sends it, it overwrites itself.

I want to use $_Session to temporarily store the contents of BookResult so that the next time flash posts BookResult again I can add it to the string of the original. eg.

Flash 1st Send

Bookresult = Great Expectations
$_Session[1] = Great Expectations

Flash 2nd Send

Bookresult = Oliver Twist
$_Session[1] = Great Expectations
$_Session[2] = Oliver Twist

...and so on.

How can I do this?

Many Thanks

Bottlebank