oddball25 Posted January 24, 2010 Share Posted January 24, 2010 Hey I cannot seem to recall my session variables throughout my site and i cannot see where i am going wrong. I have variables in my flash file which i have posted into my 'info.php' all working fine, i declare the post variables in 'info.php' with the following: [b]$num[/b] = $_POST['number']; [b]$choice[/b] = $_POST['choice']; [b]$colour[/b] = $_POST['colour']; These variables then get called in a simple form that is echo'd as below: echo '<div id="info"> <form name="form" method="post" action=""> <table width="450" border="0" cellspacing="1" cellpadding="3"> <tr><td width="65%"><strong>Number</strong></td> <td width="65%"><strong>Choice</strong></td> <td width="20%"><strong>Colour</strong></td> <td width="15%"><strong>Quantity</strong></td></tr> <tr><td>[b]'.$num.'[/b]</td><td>[b]'.$choice.'[/b]</td><td><input type="text" name="colour" value="[b]'.$colour.'[/b]"readonly></td> <td><input type="text" name="qty1" size="5" value="1"> </td></tr> <tr valign="bottom"><td><br>Paying with: <br> <input type="radio" name="x" value="CashPayment" checked="checked">Cash<br> <input type="radio" name="x" value="CardPayment">Card</td> <input type="submit" name="Submit" value="Submit"></td></tr> </table> </form>'; I then set the post variables to session variables with the following: $num = $_POST['number']; $choice = $_POST['choice']; $colour = $_POST['colour']; [b]$_SESSION['num'][/b] = $_POST['number']; [b]$_SESSION['choice'][/b] = $_POST['choice']; [b]$_SESSION['colour'][/b] = $_POST['colour']; So the form has the session variables stated as in: echo '<div id="info"> <form name="form" method="post" action=""> <table width="450" border="0" cellspacing="1" cellpadding="3"> <tr><td width="65%"><strong>Number</strong></td> <td width="65%"><strong>Choice</strong></td> <td width="20%"><strong>Colour</strong></td> <td width="15%"><strong>Quantity</strong></td></tr> <tr><td>[b]'. $_SESSION['num'].'[/b]</td><td>[b]'. $_SESSION['choice'].'[/b]</td><td><input type="text" name="colour" value="[b]'. $_SESSION['colour'].'[/b]"readonly></td> <td><input type="text" name="qty1" size="5" value="1"> </td></tr> <tr valign="bottom"><td><br>Paying with: <br> <input type="radio" name="x" value="CashPayment" checked="checked">Cash<br> <input type="radio" name="x" value="CardPayment">Card</td> <input type="submit" name="Submit" value="Submit"></td></tr> </table> </form>'; I have <?php session_start(); At the top of every php page. Can anyone help me with what i am doing wrong? The variables display when you first go to 'info.php' but as soon as you navigate away and then back the fields are empty. Any ideas? Many thanks Jon Link to comment https://forums.phpfreaks.com/topic/189615-recalling-session-variables-throughout-site/ Share on other sites More sharing options...
GingerRobot Posted January 24, 2010 Share Posted January 24, 2010 Does your browser allow cookies to be set? Link to comment https://forums.phpfreaks.com/topic/189615-recalling-session-variables-throughout-site/#findComment-1000764 Share on other sites More sharing options...
oddball25 Posted January 24, 2010 Author Share Posted January 24, 2010 Hey I have tested it on safari and firefox, both having cookies enabled and it still doesn't work... Link to comment https://forums.phpfreaks.com/topic/189615-recalling-session-variables-throughout-site/#findComment-1000770 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.