Jump to content

javascript items into php to store in database.


brown2005

Recommended Posts

<A HREF="javascript:alert('Your resolution is '+screen.width+'x'+screen.height);">

Click for your screen resolution

 

I have got this code off the tinternet to display the width and height of the browsers window, but wat i want is say

 

$screenheight = screen.height

$screenwidth = screen.width

 

so i can use these to put in my database.

 

how do i go about inserting the javascript into php.

 

first, if you are just trying to track stats about your users, use Google Analytics. it's way better then anything you can come up with yourself, and they do track screen resolutions.

 

assuming you MUST have it in your DB, you could do something like this:

<script type="text/javascript">
  window.onload = function (){
    var tracker = new Image();
    image.src = 'tracker.php?w='+screen.width+'&h='+screen.height;
  }
</script>

then, in your tracker.php file you can access $_GET['w'] and $_GET['h']

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.