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

2003-07-24 Thread Ow Mun Heng
Curt Zirzow Cc: PHP Subject: Re: [PHP] I'm really getting annoyed with PHP 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 brows

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 t

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:[

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 a

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,

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 Chris W. Parker
Pushpinder Singh Garcha 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 r

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 brow

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&#

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 " 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 he is doing just

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

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

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

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

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

2003-07-24 Thread Ow Mun Heng
return true; } Cheers, Mun Heng, Ow H/M Engineering Western Digital M'sia DID : 03-7870 5168 -Original Message- 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

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 a

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 (htt

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

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 a

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 gi

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

2003-07-23 Thread Beauford.2005
t at this point. -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 nev

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 of

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 corr

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... > > > location.href="new_page.php"; > And in my case I would never see the next page. I have javascript turned off. Never rel

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 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: www.amazon.com/o/regis

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

2003-07-23 Thread Daryl Meese
esday, 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 >sensi

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

2003-07-23 Thread skate
nt that script when you want a redirect after output has been made, and that should solve your problem... would be useful to know excatly what your doing tho... - Original Message - From: "Beauford.2005" <[EMAIL PROTECTED]> To: "PHP" <[EMAIL PROTECTED]> Sent: Thu

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 Daryl Meese
5:21 PM 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 MU

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 ses

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,

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: > action="post" name="seasons"> Try ACTION="/season_write.php" instead. What happens? -- Torben Wilson <[EMAIL PROTECTED]>+1.604.709.0506 http://www.thebuttlesschaps.com http://www.inflatableeye.com http://www

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 me

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

2003-07-23 Thread Beauford.2005
nter [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? Or other web server? 3. What is your configuration for php? check ph

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

2003-07-23 Thread Miles Thompson
the header() 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 screw

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 wo

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 yo

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 ra

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,

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

2003-07-23 Thread Andrew Brampton
ROTECTED]> 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]>

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

2003-07-23 Thread Chris W. Parker
Petre Agenbag 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 >

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

2003-07-23 Thread Petre Agenbag
--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 with this stupid redirection thing, and either I'm just a total idiot or there are some

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

[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 another