<?php
function setscreen() {
$height = "<script>document.write(screen.width);</script>";
$width = "<script>document.write(screen.height);</script>";
if (($height == "640") && ($width == "480")) {
echo "height == 640 & width = 480";
} elseif (($height == "800") && ($width == "480")) {
echo "2";
} elseif (($height == "800") && ($width == "600")) {
echo "3";
} elseif (($height == "1024") && ($width == "576")) {
echo "4";
} elseif (($height == "1024") && ($width == "768")) {
echo "Height = 1024 & width = 768";
}
echo "Height == $height & width == $width";
}
?>
<?php setscreen(); ?>
gives me this
Height == 1024 & width == 768
but the html for that is Height ==
<script>document.write(screen.width);</script> & width == <script>document.write(screen.height);</script>and i wanne work with the 1024 in php and not with the html ,, what can
i do to
run the javascript at server side and not on the client side
This is not the list you're looking for. You want to ask this question
on php-general@lists.php.net.
George
<?php
function setscreen() {
$height = "<script>document.write(screen.width);</script>";
$width = "<script>document.write(screen.height);</script>";
if (($height == "640") && ($width == "480")) {
echo "height == 640 & width = 480";
} elseif (($height == "800") && ($width == "480")) {
echo "2";
} elseif (($height == "800") && ($width == "600")) {
echo "3";
} elseif (($height == "1024") && ($width == "576")) {
echo "4";
} elseif (($height == "1024") && ($width == "768")) {
echo "Height = 1024 & width = 768";
}
echo "Height == $height & width == $width";
}
?>
<?php setscreen(); ?>gives me this
Height == 1024 & width == 768
but the html for that is Height ==
<script>document.write(screen.width);</script> & width == <script>document.write(screen.height);</script>and i wanne work with the 1024 in php and not with the html ,, what can
i do to
run the javascript at server side and not on the client side--
// George Schlossnagle
// Postal Engine -- http://www.postalengine.com/
// Ecelerity: fastest MTA on earth