RE: [PHP] $phpvar = javascriptvar???

2001-07-06 Thread Adrian Ciutureanu
PROTECTED] Subject: Re: [PHP] $phpvar = javascriptvar??? I want to store the value of screen.ColorDepth on a php var... Thanks... Kurt Lieber wrote: As the original respondent said: window.location = 'http://url?yourVar=' + yourVar; from there, parse out the URL variable

Re: [PHP] $phpvar = javascriptvar???

2001-07-05 Thread Kurt Lieber
As the original respondent said: window.location = 'http://url?yourVar=' + yourVar; from there, parse out the URL variable and store it into a PHP variable and you're good to go. - Original Message - From: Romeo Manzur [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, July 05,

Re: [PHP] $phpvar = javascriptvar???

2001-07-05 Thread Romeo Manzur
I want to store the value of screen.ColorDepth on a php var... Thanks... Kurt Lieber wrote: As the original respondent said: window.location = 'http://url?yourVar=' + yourVar; from there, parse out the URL variable and store it into a PHP variable and you're good to go. -

Re: [PHP] $phpvar = javascriptvar???

2001-07-05 Thread Kurt Lieber
: [PHP] $phpvar = javascriptvar??? I want to store the value of screen.ColorDepth on a php var... Thanks... Kurt Lieber wrote: As the original respondent said: window.location = 'http://url?yourVar=' + yourVar; from there, parse out the URL variable and store it into a PHP variable

RE: [PHP] $phpvar = javascriptvar???

2001-07-05 Thread Johnson, Kirk
-Original Message- From: Romeo Manzur [mailto:[EMAIL PROTECTED]] Subject: [PHP] $phpvar = javascriptvar??? what I mean is, how could I save a javascript var value on a php var??? You can also put a HIDDEN field in your form, have JS assign the value to that, then PHP will have