How can i get the browser's height and width to php? Like a data transfer from javascript to php?
With using innerHeight
and InnerWidth
, i think.
(O küçük Ekran boyutu ve büyük varsa ben sadece kullanıcı küçük resim göstermek gerekirse büyük ve ben bunu yapamam Ekran boyutunun yaklaşık bir veri olmadan)
Bu gibi var:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="css/slideshow.css" type="text/css" />
<script>
document.write('script.php?screen=' + screen.width + 'x' + screen.height');
</script>
</head>
<body>
<?php $lol=$_GET['screen'];
<?php echo "SIZE : $lol" ?>
</body>
</html>
Ve bu işler değildir. Ben ne yapıyorum yanlış?