Getting the screen resolution using PHP

前端 未结 21 1877
你的背包
你的背包 2020-11-22 06:50

I need to find the screen resolution of a users screen who visits my website?

21条回答
  •  情歌与酒
    2020-11-22 07:22

    Directly with PHP is not possible but...

    I write this simple code to save screen resolution on a PHP session to use on a image gallery.

    window.location = "' . $_SERVER['PHP_SELF'] . '?width="+screen.width+"&height="+screen.height;';
    }
    ?>
    

提交回复
热议问题