Javascript / Php

php.internals

Kyle Vorster

22 years ago
<?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

22 years ago
This is not the list you're looking for. You want to ask this question on php-general@lists.php.net. George On Apr 28, 2004, at 8:37 AM, Kyle Vorster wrote:
> <?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 > > -- > PHP Internals - PHP Runtime Development Mailing List > To unsubscribe, visit: http://www.php.net/unsub.php > >
// George Schlossnagle // Postal Engine -- http://www.postalengine.com/ // Ecelerity: fastest MTA on earth