mhoctober Posted May 7, 2006 Share Posted May 7, 2006 Searched the archives guys but cant find anything on the following...this code snippet ...<?phpsession_start();setcookie("cookieTransNum", $_POST['frmTransNum']);echo 'Passed Form Value :'.$_POST['frmTransNum'];echo '<br>';echo 'cookieTransNum :'.$_COOKIE["cookieTransNum"];Produces this output ....Passed Form Value :10312cookieTransNum :ie. it would appear that the cookie has not been initialised with the value passed from the form.However later in the code, and without repeating anything that would place a value into the cookie, I refer to the same cookie and it appears to be populated with the value passed from the form?Is my expectation that the cookie will be initialsed with the form value in the first code snippet incorrect?Do cookies have 'scope' ? Many thanks.... Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.