my web site uses invisionboard and sets cookies is there a way to check for the cookie being present on the users computer before allowing them to load a specific page
First, You should know the name of the cookie. In each and every protected page, check whether cookie of that name has been set. You can use isset() function. empty() function to check whether a cookie (or a variable) has an empty value should do.
thanks i'll try it