Ben test.php sayfasında örnek olarak test ettim.
Kendi sayfanıza göre ayarlarsınız. Ajax ilede olabilir alternatif olarak
<?php
session_start();
if (isset($_SESSION['screen_width']) && isset($_SESSION['screen_height'])) {
echo 'User resolution: ' . $_SESSION['screen_width'] . 'x' . $_SESSION['screen_height'];
} else if ($_GET['screen_width'] && $_GET['screen_height']){
$_SESSION['screen_width'] = $_GET['screen_width'];
$_SESSION['screen_height'] = $_GET['screen_height'];
header('Location: /test.php');
} else {
echo '<script> window.addEventListener("load", (event) => { window.location.href = "/test.php?screen_width=" + screen.width + "&screen_height=" + screen.height; }); </script>';
}