Hello Stuart,

Thursday, November 4, 2004, 10:55:42 AM, you wrote:

SF> The variable is alive with any of the code including the one I had
SF> originally. It seems to do a reset though when it's redirected.

SF> $_SESSION['f1a'] = $_POST['ListingName'];

This won't have any effect if you don't actually post the form to Page
3, again it's just resetting the session f1a value to null.

Try sticking this on Page 2 (ensure you have a session_start() at the
top of the page and that you replace the 'var' text below with the
correct ones.

if (isset($_POST['var']))
{
   echo 'POST value found, setting the session var now';
   $_SESSION['var'] = $_POST['var'];
}
else
{
    echo 'No POST value found, dumping session contents';
    print_r($_SESSION);
}

Run it - make it error - what does it end up saying?

Best regards,

Richard Davey
-- 
 http://www.launchcode.co.uk - PHP Development Services
 "I am not young enough to know everything." - Oscar Wilde

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to