RE: [PHP] Output (Urgent!)

2001-07-17 Thread Morten Winkler Jørgensen
Hi Frederik Run this code. It does what you want it to. In your original code you compared two strings in the IF-statement. When the $resolution gotten from your JavaScript returned '800' it would have a lexical higher value than '1024' and thereby do exacely what you wanted it to - actually the

Re: [PHP] Output (Urgent!)

2001-07-17 Thread Jason Rennie
$resolution = SCRIPT LANGUAGE=\JavaScript\document.write(screen.width)/SCRIPT; if ($resolution = '1024') { $resolution = 1024; } else { $resolution = 800; } echo $resolution; It always output 1024 At a guess becasue your mixing and matching languages. If you got

Re: [PHP] Output (Urgent!)

2001-07-17 Thread Joseph
How you want to get a value from client side to php on the same page? Joseph Orv î?÷inklÏ ²ørÏkîskî [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hi Frederik Run this code. It does what you want it to. In your original code you compared two strings in the

Re: [PHP] Output (Urgent!)

2001-07-17 Thread Morten Winkler Jørgensen
How you want to get a value from client side to php on the same page? Well. Actually I didn't invent the code. I just correcteded it so it worked on my installation. I must admit I was amazed that it somehow worked, but it did. Kind regards, Morten Winkler -- PHP General Mailing List

RE: [PHP] Output (Urgent!)

2001-07-17 Thread Adrian Ciutureanu
How do you know it worked? :) -Original Message- From: Morten Winkler Jørgensen [mailto:[EMAIL PROTECTED]] Sent: 17 iulie 2001 12:54 To: [EMAIL PROTECTED] Subject: Re: [PHP] Output (Urgent!) How you want to get a value from client side to php on the same page? Well

Re: [PHP] Output (Urgent!)

2001-07-17 Thread Sheridan Saint-Michel
) = 1024) { You are not actually passing anything from JavaScript to PHP... you are just tricking yourself =) Sheridan - Original Message - From: Morten Winkler Jørgensen [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, July 17, 2001 4:54 AM Subject: Re: [PHP] Output (Urgent