Hi
I get visitors to my file process.php where I get all details of visitor and do different checks and then redirect visitor to different external pages.
I am trying to trace screen resolution of visitor by following code in php file. I tried to store screen resolution in cookie and then get cookie data in php file.
<? if($_COOKIE["screenres"]=="" or !isset($_COOKIE["screenres"])) header("Refresh:0"); $screenres = $_COOKIE["screenres"]; ?>Any help or better way to get screen resolution in php. I don’t want java redirect method to avoid http_referrer url creation. I don’t want that my site link pass to external pages if I try redirect method.
Any help or better way to get screen resolution in php. I don’t want java redirect method to avoid http_referrer url creation. I don’t want that my site link pass to external pages if I try redirect method.