i have a page where i developed a function to delete a cookie based on wether there is a var ($so) set to 1 or not.
ie:
if($so == 1) {
setcookie("username","",time()-1000,"/");
}
well everything was working fine and dandy untill we now put that page within a frame. the url is there, but the var doesnt get passed to the frame.
is there any way to grab the variables that are in the browsers url string? are there any reserved system variables for this? any suggestions on how to make this work?
any help is appreciated.
thanks.
ajones