RE: [PHP] I'm really getting annoyed with PHP

2003-07-24 Thread Lars Torben Wilson
On Thu, 2003-07-24 at 20:24, Beauford.2005 wrote: It's obvious though that PHP can not handle it. This is why I am forced to use javascript. I have already spent a week on this and am not going to waste any further time. I have posted all my code and if someone can see a problem I'll look at

RE: [PHP] I'm really getting annoyed with PHP

2003-07-24 Thread Ow Mun Heng
- From: Beauford.2005 [mailto:[EMAIL PROTECTED] Sent: Friday, July 25, 2003 6:13 AM To: [EMAIL PROTECTED]; PHP Subject: RE: [PHP] I'm really getting annoyed with PHP FYI. I did this login page for another website last month and I used the code from it to do this one. The other one works perfectly

Re: [PHP] I'm really getting annoyed with PHP

2003-07-24 Thread Comex
[EMAIL PROTECTED] Lars Torben Wilson: On Wed, 2003-07-23 at 18:21, Daryl Meese wrote: Well, I know I am not running the latest version of PHP but I don't believe this is accurate. I believe PHP case sensitivity is based on the os that processes the file. Can anyone clear this up. Daryl

Re: [PHP] I'm really getting annoyed with PHP

2003-07-24 Thread Comex
[EMAIL PROTECTED] Beauford.2005: It's obvious though that PHP can not handle it. This is why I am forced to use javascript. I have already spent a week on this and am not going to waste any further time. I have posted all my code and if someone can see a problem I'll look at it, but it just

Re: [PHP] I'm really getting annoyed with PHP

2003-07-24 Thread zerof
I'm using the redirect with php for a long time, with no problems. I use it in all of my pages, including navigational menus. The great problem with headers is the function exit if it is used to ends the call. headers + exit, if used in any place, may cause some collateral efects. - zerof

Re: [PHP] I'm really getting annoyed with PHP

2003-07-24 Thread Comex
[EMAIL PROTECTED] Zerof: I'm using the redirect with php for a long time, with no problems. I use it in all of my pages, including navigational menus. The great problem with headers is the function exit if it is used to ends the call. headers + exit, if used in any place, may cause some

Re: [PHP] I'm really getting annoyed with PHP

2003-07-24 Thread zerof
You are absolutely right, exit, quits my script, this let me use an independent script to handle the headers. if used with conditional calls. . zerof - Comex [EMAIL PROTECTED] escreveu na mensagem news:[EMAIL PROTECTED] [EMAIL PROTECTED] - Why? AFAIK, exit quits the

Re: [PHP] I'm really getting annoyed with PHP

2003-07-24 Thread Pushpinder Singh Garcha
10:52 PM To: Curt Zirzow Cc: PHP Subject: Re: [PHP] I'm really getting annoyed with PHP On Thursday, July 24, 2003, at 12:18 PM, Curt Zirzow wrote: And in my case I would never see the next page. I have javascript turned off. Never rely on javascript to do the work, excpecially in small cases

Re: [PHP] I'm really getting annoyed with PHP

2003-07-24 Thread Curt Zirzow
* Thus wrote Pushpinder Singh Garcha ([EMAIL PROTECTED]): try this, use a meta-refresh ... echo META HTTP-EQUIV=\refresh\ content=\3;URL=http://wherever_u_wana_go.com/hello.html\;; This has already been discussed, and is not the preferred method of doing redirects. PHP can handle what

Re: [PHP] I'm really getting annoyed with PHP

2003-07-24 Thread Jim Lucas
can someone post the original source that he submitted. I was gone yesterday and missed it. Thanks Jim - Original Message - From: Curt Zirzow [EMAIL PROTECTED] To: PHP [EMAIL PROTECTED] Sent: Thursday, July 24, 2003 9:11 AM Subject: Re: [PHP] I'm really getting annoyed with PHP

Re: [PHP] I'm really getting annoyed with PHP

2003-07-24 Thread Pushpinder Singh Garcha
hello everyone, Can somebody tell me why meta-refresh is not preferred to do re-directs ? I know Javascript is browser dependent, so its undependable. using headers in php requires that no output is sent to the browser, what if the code logic requires that there is some output sent to the

RE: [PHP] I'm really getting annoyed with PHP

2003-07-24 Thread Chris W. Parker
Pushpinder Singh Garcha mailto:[EMAIL PROTECTED] on Thursday, July 24, 2003 11:10 AM said: hello everyone, Can somebody tell me why meta-refresh is not preferred to do re-directs ? I think because it breaks the back button (explained in more detail later). using headers in php

Re: [PHP] I'm really getting annoyed with PHP

2003-07-24 Thread Curt Zirzow
* Thus wrote Jim Lucas ([EMAIL PROTECTED]): can someone post the original source that he submitted. I was gone yesterday and missed it. dont bother. his original post was in some other exhausted long threaded that resulted in nothing. Curt -- I used to think I was indecisive, but now I'm

Re: [PHP] I'm really getting annoyed with PHP

2003-07-24 Thread Curt Zirzow
* Thus wrote Pushpinder Singh Garcha ([EMAIL PROTECTED]): hello everyone, Can somebody tell me why meta-refresh is not preferred to do re-directs ? I know Javascript is browser dependent, so its undependable. Again, this has already been mentioned three (3) times in this thread alone, just

Re: [PHP] I'm really getting annoyed with PHP

2003-07-24 Thread Chris Shiflett
--- Pushpinder Singh Garcha [EMAIL PROTECTED] wrote: Can somebody tell me why meta-refresh is not preferred to do re-directs? Sure. using headers in php requires that no output is sent to the browser I think this is what is causing you trouble, as this is incorrect. You can have output and

Re: [PHP] I'm really getting annoyed with PHP

2003-07-24 Thread Kevin Stone
Zerof [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] You are absolutely right, exit, quits my script, this let me use an independent script to handle the headers. if used with conditional calls. . zerof - Comex [EMAIL PROTECTED] escreveu na mensagem news:[EMAIL

Re: [PHP] I'm really getting annoyed with PHP

2003-07-24 Thread Lars Torben Wilson
On Thu, 2003-07-24 at 04:18, Comex wrote: [EMAIL PROTECTED] Lars Torben Wilson: On Wed, 2003-07-23 at 18:21, Daryl Meese wrote: Well, I know I am not running the latest version of PHP but I don't believe this is accurate. I believe PHP case sensitivity is based on the os that processes

RE: [PHP] I'm really getting annoyed with PHP

2003-07-24 Thread Ow Mun Heng
login form/msg } = Cheers, Mun Heng, Ow H/M Engineering Western Digital M'sia DID : 03-7870 5168 -Original Message- From: Pushpinder Singh Garcha [mailto:[EMAIL PROTECTED] Sent: Friday, July 25, 2003 2:10 AM To: Curt Zirzow Cc: PHP Subject: Re: [PHP] I'm really

[PHP] I'm really getting annoyed with PHP

2003-07-23 Thread Beauford.2005
Yes, I'm still screwing around with this stupid redirection thing, and either I'm just a total idiot or there are some serious problems with PHP. I have now tried to do it another way and - yes - you guessed it. It does not work. I mean really, it can not be this hard to redirect a user to

RE: [PHP] I'm really getting annoyed with PHP

2003-07-23 Thread Jay Blanchard
[snip] Yes, I'm still screwing around with this stupid redirection thing, and either I'm just a total idiot or there are some serious problems with PHP. I have now tried to do it another way and - yes - you guessed it. It does not work. I mean really, it can not be this hard to redirect a user to

RE: [PHP] I'm really getting annoyed with PHP

2003-07-23 Thread Petre Agenbag
Message- From: Beauford.2005 [mailto:[EMAIL PROTECTED] Sent: Thursday, July 24, 2003 9:41 PM To: PHP Subject: [PHP] I'm really getting annoyed with PHP Yes, I'm still screwing around with this stupid redirection thing, and either I'm just a total idiot or there are some serious problems with PHP. I

RE: [PHP] I'm really getting annoyed with PHP

2003-07-23 Thread Chris W. Parker
Petre Agenbag mailto:[EMAIL PROTECTED] on Wednesday, July 23, 2003 12:55 PM said: If you want to use PHP, then you must use the headers() function. BUT, with the header function, you MUST make sure that there will be absolutely NO output to the page before the header() function is called,

Re: [PHP] I'm really getting annoyed with PHP

2003-07-23 Thread Andrew Brampton
] To: Petre Agenbag [EMAIL PROTECTED]; Beauford.2005 [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Wednesday, July 23, 2003 8:56 PM Subject: RE: [PHP] I'm really getting annoyed with PHP Petre Agenbag mailto:[EMAIL PROTECTED] on Wednesday, July 23, 2003 12:55 PM said: If you want to use PHP

Re: [PHP] I'm really getting annoyed with PHP

2003-07-23 Thread CPT John W. Holmes
From: Beauford.2005 [EMAIL PROTECTED] Yes, I'm still screwing around with this stupid redirection thing, and either I'm just a total idiot or there are some serious problems with PHP. I have now tried to do it another way and - yes - you guessed it. It does not work. I mean really, it can

Re: [PHP] I'm really getting annoyed with PHP

2003-07-23 Thread Lars Torben Wilson
On Thu, 2003-07-24 at 12:41, Beauford.2005 wrote: Yes, I'm still screwing around with this stupid redirection thing, and either I'm just a total idiot or there are some serious problems with PHP. I have now tried to do it another way and - yes - you guessed it. It does not work. I doubt

Re: [PHP] I'm really getting annoyed with PHP

2003-07-23 Thread Step Schwarz
FYI, the date on your computer and/or mail server seems to be fast by one day.. your message is dated tomorrow. 1) is this the ONLY PHP script you're having problems with, or could it be that PHP isn't yet up and running on your web server? 2) when you try to view the page in a web browser are

Re: [PHP] I'm really getting annoyed with PHP

2003-07-23 Thread Chris Shiflett
--- Beauford.2005 [EMAIL PROTECTED] wrote: Yes, I'm still screwing around with this stupid redirection thing, and either I'm just a total idiot or there are some serious problems with PHP. I have now tried to do it another way and - yes - you guessed it. It does not work. It doesn't work? I

RE: [PHP] I'm really getting annoyed with PHP

2003-07-23 Thread Miles Thompson
() function is called, not even a space... Otherwise, you can simply use a meta refresh... -Original Message- From: Beauford.2005 [mailto:[EMAIL PROTECTED] Sent: Thursday, July 24, 2003 9:41 PM To: PHP Subject: [PHP] I'm really getting annoyed with PHP Yes, I'm still screwing around

RE: [PHP] I'm really getting annoyed with PHP

2003-07-23 Thread Beauford.2005
$_SESSION['goto']; ?; // End -- /script -Original Message- From: Ray Hunter [mailto:[EMAIL PROTECTED] Sent: July 23, 2003 5:44 PM To: Beauford.2005 Subject: Re: [PHP] I'm really getting annoyed with PHP Questions: 1. What verion of php are you running? 2. What version of apache are you running

RE: [PHP] I'm really getting annoyed with PHP

2003-07-23 Thread Chris Shiflett
--- Petre Agenbag wrote: If you want to use PHP, then you must use the headers() function. BUT, with the header function, you MUST make sure that there will be absolutely NO output to the page before the header() function is called, not even a space... Otherwise, you can simply use a meta

RE: [PHP] I'm really getting annoyed with PHP

2003-07-23 Thread Lars Torben Wilson
On Thu, 2003-07-24 at 15:12, Beauford.2005 wrote: FORM onSubmit=return checkrequired(this) ACTION=season_write.php action=post name=seasons Try ACTION=/season_write.php instead. What happens? -- Torben Wilson [EMAIL PROTECTED]+1.604.709.0506

Re: [PHP] I'm really getting annoyed with PHP

2003-07-23 Thread Curt Zirzow
* Thus wrote Petre Agenbag ([EMAIL PROTECTED]): If you want to use PHP, then you must use the headers() function. BUT, with the header function, you MUST make sure that there will be absolutely NO output to the page before the header() function is called, not even a space... Otherwise, you

RE: [PHP] I'm really getting annoyed with PHP

2003-07-23 Thread Gabriel Guzman
On Thu, 2003-07-24 at 15:12, Beauford.2005 wrote: FYI. I did this login page for another website last month and I used the code from it to do this one. The other one works perfectly. I checked that code again today and there is ABSOLUTELY no differnce. I even used the same variables and

RE: [PHP] I'm really getting annoyed with PHP

2003-07-23 Thread Daryl Meese
To: Miles Thompson; Petre Agenbag; Beauford.2005 Cc: [EMAIL PROTECTED] Subject: RE: [PHP] I'm really getting annoyed with PHP --- Petre Agenbag wrote: If you want to use PHP, then you must use the headers() function. BUT, with the header function, you MUST make sure that there will be absolutely

Re: [PHP] I'm really getting annoyed with PHP

2003-07-23 Thread Leif K-Brooks
Daryl Meese wrote: One important difference between most windows and linux setups is is case sensitivity. Windows sees $x and $X as the same variable but Linux does not. so it could be a case issue. The two OSes do that with /files/, but PHP doesn't rely on the OS to check variable names. PHP

Re: [PHP] I'm really getting annoyed with PHP

2003-07-23 Thread skate
] I'm really getting annoyed with PHP Yes, I'm still screwing around with this stupid redirection thing, and either I'm just a total idiot or there are some serious problems with PHP. I have now tried to do it another way and - yes - you guessed it. It does not work. I mean really, it can

RE: [PHP] I'm really getting annoyed with PHP

2003-07-23 Thread Daryl Meese
, July 23, 2003 7:41 PM To: Daryl Meese Cc: [EMAIL PROTECTED]; Miles Thompson; Petre Agenbag; Beauford.2005; [EMAIL PROTECTED] Subject: Re: [PHP] I'm really getting annoyed with PHP Daryl Meese wrote: One important difference between most windows and linux setups is is case sensitivity. Windows sees

Re: [PHP] I'm really getting annoyed with PHP

2003-07-23 Thread John W. Holmes
Daryl Meese wrote: Well, I know I am not running the latest version of PHP but I don't believe this is accurate. I believe PHP case sensitivity is based on the os that processes the file. Can anyone clear this up. Yes, you're wrong. :) -- ---John Holmes... Amazon Wishlist:

Re: [PHP] I'm really getting annoyed with PHP

2003-07-23 Thread Leif K-Brooks
Daryl Meese wrote: Well, I know I am not running the latest version of PHP but I don't believe this is accurate. I believe PHP case sensitivity is based on the os that processes the file. Can anyone clear this up. Correct for files, but variables aren't files. -- The above message is encrypted

Re: [PHP] I'm really getting annoyed with PHP

2003-07-23 Thread Curt Zirzow
* Thus wrote skate ([EMAIL PROTECTED]): you could also shove some JavaScript in there if you don't like the way the PHP header(location:...) function works... script language=JavaScript location.href=new_page.php; /script And in my case I would never see the next page. I have

RE: [PHP] I'm really getting annoyed with PHP

2003-07-23 Thread Lars Torben Wilson
On Wed, 2003-07-23 at 18:21, Daryl Meese wrote: Well, I know I am not running the latest version of PHP but I don't believe this is accurate. I believe PHP case sensitivity is based on the os that processes the file. Can anyone clear this up. Daryl OK: you're mistaken. If you're correct,

Re: [PHP] I'm really getting annoyed with PHP

2003-07-23 Thread Justin French
On Thursday, July 24, 2003, at 12:18 PM, Curt Zirzow wrote: And in my case I would never see the next page. I have javascript turned off. Never rely on javascript to do the work, excpecially in small cases like this when php can handle it without any issues, such as javascript being turned

RE: [PHP] I'm really getting annoyed with PHP

2003-07-23 Thread Beauford.2005
. -Original Message- From: Justin French [mailto:[EMAIL PROTECTED] Sent: July 23, 2003 10:52 PM To: Curt Zirzow Cc: PHP Subject: Re: [PHP] I'm really getting annoyed with PHP On Thursday, July 24, 2003, at 12:18 PM, Curt Zirzow wrote: And in my case I would never see the next page. I

RE: [PHP] I'm really getting annoyed with PHP

2003-07-23 Thread Mark Charette
From: Beauford.2005 [mailto:[EMAIL PROTECTED] It's obvious though that PHP can not handle it. Since thousands of people and websites use the header() function without your problems ... It's obvious at this point you've got a bug and can't figure out how to fix it, even though you've been

RE: [PHP] I'm really getting annoyed with PHP

2003-07-23 Thread Robert Cummings
On Thu, 2003-07-24 at 23:24, Beauford.2005 wrote: It's obvious though that PHP can not handle it. This is why I am forced to use javascript. I have already spent a week on this and am not going to waste any further time. I have posted all my code and if someone can see a problem I'll look at

RE: [PHP] I'm really getting annoyed with PHP

2003-07-23 Thread Chris Shiflett
--- Beauford.2005 [EMAIL PROTECTED] wrote: It's obvious though that PHP can not handle it. This is why I am forced to use javascript. I have already spent a week on this and am not going to waste any further time. So you sacrifice the experience of your users due to your own difficulties in

Re: [PHP] I'm really getting annoyed with PHP

2003-07-23 Thread Leif K-Brooks
Beauford.2005 wrote: It's obvious though that PHP can not handle it. A poor workman always blames his tools. -- The above message is encrypted with double rot13 encoding. Any unauthorized attempt to decrypt it will be prosecuted to the full extent of the law. -- PHP General Mailing List