This option will reset the home page of this site. Restoring any closed widgets or categories.

Reset

Passing variables from javascript to php

One of the frequent problems is defining visitor’s screen resolution using JavaScript tools and passing this data to PHP-script. The script below will find the resolution of the user screen using php and pass the value to the javascript location.href part from which it is redirected to a php page.

<script language=”javascript” type=”text/javascript”>

width = screen.width;

height = screen.height;

if (width > 0 && height >0) {

window.location.href = ‘http://localhost/main.php?width=’+width+’&height=’+height;

} else

exit();

</script>

In this the variables ie the width and height is passed to a php page [MAIN.php]
VN:F [1.5.7_846]
Rating: 0.0/10 (0 votes cast)
VN:F [1.5.7_846]
Rating: 0 (from 0 votes)
Share and Enjoy:
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google
  • De.lirio.us
  • Xerpi

Related posts:

  1. How to close a child window from a parent window using javascript

Leave a Reply

Spam Protected