JavaScript Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsWeb DesignJavaScript Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old July 24th, 2001, 12:34 AM
marcelkok marcelkok is offline
Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Feb 2001
Posts: 4 marcelkok User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Question PHP and Javascript

Hi,

Can someone help me with this:

I've a page called: index.php

I want to add a variable 'w'with the screen width so I can use the variable 'w' for php purposes.

Here's the code I use now:


<?php
if ( !isset($w) ) { ?>

<SCRIPT language="JavaScript">
<!--
var w = screen.width;

window.location.replace("<?php echo (basename($PHP_SELF) ?>?w=" + w );
//-->
</SCRIPT>


This works fine when there all no other variables after index.php, but what if there's already an index.php?x=10

How can I adjust the script so I get

index.php?w=1024

or

index.php?x=10&w=1024

when needed?

Thanx,

Marcel

Reply With Quote
  #2  
Old July 24th, 2001, 01:41 AM
sLiPkNoT rUlEz sLiPkNoT rUlEz is offline
PHP Coder
Dev Shed Newbie (0 - 499 posts)
 
Join Date: May 2001
Location: Ontario
Posts: 66 sLiPkNoT rUlEz User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 13
Send a message via ICQ to sLiPkNoT rUlEz Send a message via AIM to sLiPkNoT rUlEz Send a message via Yahoo to sLiPkNoT rUlEz
<?php
if (!isset($w) || !isset($h) ) {
?>

<script language="JavaScript">
<![CDATA[
var w = screen.width;
var h = screen.height;
window.location.replace("<?php echo (basename($PHP_SELF) ?>?w="+w+"&h="+h);
//-->
</script>

aside from the XHTML-compliant CDATA thing that I probably screwed up, that should work. It will give you the width ($w) and the height ($h).
__________________
Click here and wait. It's a kewl effect, trust me.

Reply With Quote
Reply

Viewing: Dev Shed ForumsWeb DesignJavaScript Development > PHP and Javascript

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap