Re: [PHP] Re: Redirection Question (I spoke to soon)

2003-07-25 Thread Joel Rees
Finally, Thanks to all that tried to help, but I found part of the problem - sort of. In the file that I am trying to redirect to I have a form with the line: FORM onSubmit=return checkrequired(this) ACTION=season-write.php action=post name=testing It appears this line was corrupt

Re: [PHP] Re: Redirection Question (I spoke to soon)

2003-07-24 Thread Brian Tully
on 7/24/03 8:13 PM, Beauford.2005 at [EMAIL PROTECTED] wrote: FORM onSubmit=return checkrequired(this) ACTION=season-write.php action=post name=testing someone else already raised this issue and it doesn't look like you caught it: you have two actions in your form (the second should

RE: [PHP] Re: Redirection Question (I spoke to soon)

2003-07-23 Thread Ow Mun Heng
:[EMAIL PROTECTED] Sent: Wednesday, July 23, 2003 12:20 PM To: PHP Subject: Re: [PHP] Re: Redirection Question (I spoke to soon) * Thus wrote Beauford.2005 ([EMAIL PROTECTED]): Sorry all, apparently this doesn't work on either Windows or Linux. Again, I thought it was working and once I got

RE: [PHP] Re: Redirection Question (I spoke to soon)

2003-07-23 Thread Ford, Mike [LSS]
-Original Message- From: Ow Mun Heng [mailto:[EMAIL PROTECTED] Sent: 23 July 2003 11:37 I'm confused.. quote With $_SESSION, there is no need to use the session_register(), session_unregister(), session_is_registered() functions. Session variables are accessible like

Re: [PHP] Re: Redirection Question (I spoke to soon)

2003-07-23 Thread Curt Zirzow
* Thus wrote Ow Mun Heng ([EMAIL PROTECTED]): Hi Curt, I'm confused.. I'll try to clear this up for you. I'm going to see if I can get the documentation on the web site fixed also. It is rather confusing. There appears to be two ways to do sessions: '--- Style

Re: [PHP] Re: Redirection Question (I spoke to soon)

2003-07-23 Thread Jason Wong
On Thursday 24 July 2003 11:37, Beauford.2005 wrote: I found one of my problems and also implemented your suggestions, and still the same thing. It will not redirect. The problem I found is that $_SERVER['SERVER_NAME'] does not include the port number. On my Win PC I am using port 800. So I

RE: [PHP] Re: Redirection Question (I spoke to soon)

2003-07-23 Thread Beauford.2005
Errors are on and I get nothing, it won't even direct if I hard code header(Location: www.microsoft.com); -Original Message- From: Jason Wong [mailto:[EMAIL PROTECTED] Sent: July 23, 2003 12:48 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] Re: Redirection Question (I spoke to soon

Re: [PHP] Re: Redirection Question (I spoke to soon)

2003-07-23 Thread Grant Rutherford
You need the http://; ie. http://www.microsoft.com; Beauford.2005 wrote: Errors are on and I get nothing, it won't even direct if I hard code header(Location: www.microsoft.com); -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Re: Redirection Question (I spoke to soon)

2003-07-23 Thread Beauford.2005
Finally, Thanks to all that tried to help, but I found part of the problem - sort of. In the file that I am trying to redirect to I have a form with the line: FORM onSubmit=return checkrequired(this) ACTION=season-write.php action=post name=testing It appears this line was corrupt somehow.

RE: [PHP] Re: Redirection Question (I spoke to soon)

2003-07-23 Thread Ow Mun Heng
Question (I spoke to soon) -Original Message- From: Ow Mun Heng [mailto:[EMAIL PROTECTED] Sent: 23 July 2003 11:37 I'm confused.. quote With $_SESSION, there is no need to use the session_register(), session_unregister(), session_is_registered() functions. Session

RE: [PHP] Re: Redirection Question (I spoke to soon)

2003-07-23 Thread Ow Mun Heng
[mailto:[EMAIL PROTECTED] Sent: Friday, July 25, 2003 3:06 AM To: [EMAIL PROTECTED] Subject: RE: [PHP] Re: Redirection Question (I spoke to soon) Errors are on and I get nothing, it won't even direct if I hard code header(Location: www.microsoft.com); -Original Message- From: Jason Wong

[PHP] Re: Redirection Question (I spoke to soon)

2003-07-22 Thread Beauford.2005
Sorry all, apparently this doesn't work on either Windows or Linux. Again, I thought it was working and once I got farther along I see that it really wasn't. Basically what I get after I login is an empty screen. Here is what I have : This is the script that runs to see if the user is logged in.

Re: [PHP] Re: Redirection Question (I spoke to soon)

2003-07-22 Thread John W. Holmes
Beauford.2005 wrote: Sorry all, apparently this doesn't work on either Windows or Linux. Again, I thought it was working and once I got farther along I see that it really wasn't. Basically what I get after I login is an empty screen. Here is what I have : This is the script that runs to see if

RE: [PHP] Re: Redirection Question (I spoke to soon)

2003-07-22 Thread Beauford.2005
?? -Original Message- From: Ray Hunter [mailto:[EMAIL PROTECTED] Sent: July 22, 2003 10:47 PM To: Beauford.2005 Subject: Re: [PHP] Re: Redirection Question (I spoke to soon) Try doing: session_start(); $_SESSION['logged'] = True; $_SESSION['user'] = $row['user']; // you cant do

Re: [PHP] Re: Redirection Question (I spoke to soon)

2003-07-22 Thread Curt Zirzow
* Thus wrote Beauford.2005 ([EMAIL PROTECTED]): Sorry all, apparently this doesn't work on either Windows or Linux. Again, I thought it was working and once I got farther along I see that it really wasn't. Basically what I get after I login is an empty screen. Here is what I have : This is