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.

 

Link to comment
Share on other sites

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']

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.