Do I need to pass cookie information to a function? i.e., this works:
echo $mycookie;
this don't:
function fnGimmieCookie() {
echo $mycookie;
}
fnGimmieCookie();
does this mean i'm forced to send the cookie in as a variable like so:
function fnGimmieCookie($incookie) {
echo $incookie;
}
fnGimmieCookie($mycookie);
Thanks in advance,
squonk