maxso Posted November 4, 2008 Share Posted November 4, 2008 I need to know if it is possible if i can search for a cookie that is >0 and if so get it. Is this possible or not? Basicly i need to find a cookie id which is the users id from "1"-"99999 Link to comment https://forums.phpfreaks.com/topic/131363-is-this-possible/ Share on other sites More sharing options...
rhodesa Posted November 4, 2008 Share Posted November 4, 2008 foreach($_COOKIE as $key=>$val){ if(is_numeric($key)){ echo "$key: $val<br />"; } } Link to comment https://forums.phpfreaks.com/topic/131363-is-this-possible/#findComment-682205 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.