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.... Link to comment https://forums.phpfreaks.com/topic/9261-cookies-and-scope/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.