Re: [PHP] Re: I want to use POST when redirect via PHP Header function.

2011-06-30 Thread Steve Staples
On Thu, 2011-06-30 at 15:20 +0100, Geoff Lane wrote: > On Thursday, June 30, 2011, Jasper Mulder wrote: > > I think the moral is that one should never code when tired ;( > or coding while drunk... my favorite typo is $this == 'value'; or $$this = 'value'; very hard to find sometimes... As

[PHP] Re: I want to use POST when redirect via PHP Header function.

2011-06-30 Thread Geoff Lane
On Thursday, June 30, 2011, Jasper Mulder wrote: > Personally, I think that incorrect spelling is far more annoying > than the quoting; that is, if it does not originate from > incapability due to English (whether it be British or American) > being not the native language, as opposed to spelling e

Re: [PHP] I want to use POST when redirect via PHP Header function.

2011-06-30 Thread Jim Giner
DON't get me started on the massacre of the English language on posting sites all over the internet! It seems that people are so wrought up in their problem-of-the-moment that they don't realize that they are mis-spelling, mis-typing and mis-stating their problem(s) in their frantic posts. :)

RE: [PHP] I want to use POST when redirect via PHP Header function.

2011-06-30 Thread Jasper Mulder
> To: php-general@lists.php.net > From: jim.gi...@albanyhandball.com > Date: Thu, 30 Jun 2011 09:12:45 -0400 > Subject: Re: [PHP] I want to use POST when redirect via PHP Header function. > > Just as bottom posting (I know, it's in da rules) makes it rather difficult >

Re: [PHP] I want to use POST when redirect via PHP Header function.

2011-06-30 Thread Jim Giner
Just as bottom posting (I know, it's in da rules) makes it rather difficult for humans to read thru a topic, scrolling thru ever-longer messages to get to the 'new' content. Let's solve it for all by only posting your own content and let the sum of all the messages equate to the topic. :) "As

Re: [PHP] I want to use POST when redirect via PHP Header function.

2011-06-30 Thread Ashley Sheridan
Md Ashickur Rahman Noor wrote: >> >> On Thu, Jun 30, 2011 at 1:52 PM, Geoff Lane >wrote: >> On Thursday, June 30, 2011, Md Ashickur Rahman Noor wrote: >> >> > I want to use POST when redirect via PHP Header function. Is it >> > possible? >>

Re: [PHP] I want to use POST when redirect via PHP Header function.

2011-06-30 Thread Arthur Moczulski
; I want to use POST when redirect via PHP Header function. Is it > > > possible? > > > > AFAICT, it isn't. You can use GET variables by passing them on the > > querystring. These can then be accessed via $_REQUEST, which is an > > amalgamation of $_POST, $_GET,

Re: [PHP] I want to use POST when redirect via PHP Header function.

2011-06-30 Thread Md Ashickur Rahman Noor
> > On Thu, Jun 30, 2011 at 1:52 PM, Geoff Lane wrote: > On Thursday, June 30, 2011, Md Ashickur Rahman Noor wrote: > > > I want to use POST when redirect via PHP Header function. Is it > > possible? > > AFAICT, it isn't. You can use GET variables by passing t

Re: [PHP] I want to use POST when redirect via PHP Header function.

2011-06-30 Thread Geoff Lane
On Thursday, June 30, 2011, Md Ashickur Rahman Noor wrote: > I want to use POST when redirect via PHP Header function. Is it > possible? AFAICT, it isn't. You can use GET variables by passing them on the querystring. These can then be accessed via $_REQUEST, which is an amalgamatio

RE: [PHP] I want to use POST when redirect via PHP Header function.

2011-06-30 Thread Ashley Sheridan
ard L. Buskirk > >-Original Message- >From: Md Ashickur Rahman Noor [mailto:ashickur.n...@gmail.com] >Sent: Thursday, June 30, 2011 2:36 AM >To: Ashley Sheridan >Cc: php-general@lists.php.net >Subject: Re: [PHP] I want to use POST whe

RE: [PHP] I want to use POST when redirect via PHP Header function.

2011-06-30 Thread admin
lto:ashickur.n...@gmail.com] Sent: Thursday, June 30, 2011 2:36 AM To: Ashley Sheridan Cc: php-general@lists.php.net Subject: Re: [PHP] I want to use POST when redirect via PHP Header function. For passing value to other page. -- Dedicated

Re: [PHP] I want to use POST when redirect via PHP Header function.

2011-06-29 Thread Md Ashickur Rahman Noor
ahman On Thu, Jun 30, 2011 at 12:34 PM, Ashley Sheridan wrote: > > > Md Ashickur Rahman Noor wrote: > > >I want to use POST when redirect via PHP Header function. Is it > >possible? > >-- >

Re: [PHP] I want to use POST when redirect via PHP Header function.

2011-06-29 Thread Ashley Sheridan
Md Ashickur Rahman Noor wrote: >I want to use POST when redirect via PHP Header function. Is it >possible? >-- >Dedicated Linux Forum in >Bangladesh<http://forums.linuxdesh.com/member.php?action=register&referrer=3

[PHP] I want to use POST when redirect via PHP Header function.

2011-06-29 Thread Md Ashickur Rahman Noor
I want to use POST when redirect via PHP Header function. Is it possible? -- Dedicated Linux Forum in Bangladesh<http://forums.linuxdesh.com/member.php?action=register&referrer=3%20> Follow Me Twiter <https://twitter.com/#%21

RE: [PHP] header function odd behavior

2011-06-28 Thread Ford, Mike
> -Original Message- > From: H Rao [mailto:hydsd...@gmail.com] > Sent: 28 June 2011 04:40 > > I am trying to understand odd(different) behavior of the header > function > under two different environments. > > Here is the code which I am trying to execute from two different > servers > >

Re: [PHP] header function odd behavior

2011-06-27 Thread Nilesh Govindarajan
On 06/28/2011 09:10 AM, H Rao wrote: > Hi, > > I am trying to understand odd(different) behavior of the header function > under two different environments. > > Here is the code which I am trying to execute from two different servers > > header ("Set-Cookie: c1=value1;path=/; domain=.domain.com");

[PHP] header function odd behavior

2011-06-27 Thread H Rao
Hi, I am trying to understand odd(different) behavior of the header function under two different environments. Here is the code which I am trying to execute from two different servers When executed from server1(OS X), both cookies are set in browser, but when executed from server2(Linux), only

Re: [PHP] Header function

2010-03-01 Thread Ashley Sheridan
On Mon, 2010-03-01 at 12:14 +0100, Kim Madsen wrote: > Ashley Sheridan wrote on 01/03/2010 07:13: > > > The HTTP header doesn't treat quoteation marks in the same way that PHP > > does. It needs double quote marks to function correctly. > > How do you mean? And do you have a link to this informa

Re: [PHP] Header function

2010-03-01 Thread Kim Madsen
Ashley Sheridan wrote on 01/03/2010 07:13: The HTTP header doesn't treat quoteation marks in the same way that PHP does. It needs double quote marks to function correctly. How do you mean? And do you have a link to this information? Even if this is true, then the first Nick did should still b

RE: [PHP] Header function

2010-02-28 Thread Ashley Sheridan
mail.com] > Sent: Saturday, 27 February 2010 8:45 PM > To: Nick allan > Cc: php-general@lists.php.net > Subject: Re: [PHP] Header function > > On 27 February 2010 04:32, Nick allan wrote: > > Hi all > > > > Has anyone got any ideas why the following isn't g

RE: [PHP] Header function

2010-02-27 Thread Nick allan
27;Content-Type: application/msword'); header("Content-Disposition: attachment; filename=PurchaseReq.doc"); -Original Message- From: Richard Quadling [mailto:rquadl...@googlemail.com] Sent: Saturday, 27 February 2010 8:45 PM To: Nick allan Cc: php-general@lists.php.net Subject: Re

Re: [PHP] Header function

2010-02-27 Thread Richard Quadling
On 27 February 2010 04:32, Nick allan wrote: > Hi all > > Has anyone got any ideas why the following isn't giving me correct filename > in the ie save dialogue > > header('Content-Type: application/msword'); > >  header('Content-Disposition: attachment; filename="PurchaseReq.doc"'); > > > > I get

[PHP] Header function

2010-02-26 Thread Nick allan
Hi all Has anyone got any ideas why the following isn't giving me correct filename in the ie save dialogue header('Content-Type: application/msword'); header('Content-Disposition: attachment; filename="PurchaseReq.doc"'); I get the save dialogue, but with preq.doc instead of PurchaseReq.doc

Re: [PHP] header function query

2010-02-26 Thread Rene Veerman
output the html you want to send afterwards first, then either put a link to another script that outputs the word file, or have an auto-launch ajax routine (i recommend jquery.com for ajax) do it automatically. On Fri, Feb 26, 2010 at 7:49 AM, Nick allan wrote: > Hi all > > The situation is as f

Re: [PHP] header function query

2010-02-26 Thread Richard Quadling
On 26 February 2010 06:49, Nick allan wrote: > Hi all > > The situation is as follows > > I've read some data in from a couple of files into a string variable, made > some changes to it and want to send the contents of the string out to the > browser as a word document. > > My code currently looks

[PHP] header function query

2010-02-25 Thread Nick allan
Hi all The situation is as follows I've read some data in from a couple of files into a string variable, made some changes to it and want to send the contents of the string out to the browser as a word document. My code currently looks like the following header('Content-Type: application/msword

Re: [PHP] redirecting to another frame using php header function

2004-08-11 Thread Matthew Sims
> hi... > > can anyone point me to a way to do a page redirect using the php 'Header' > function to another frame. I have a page in one frame, when the user does > a > submit, i want to have the app do a redirect using the 'Header' function, > with the s

Re: [PHP] redirecting to another frame using php header function

2004-08-11 Thread John Holmes
bruce wrote: can anyone point me to a way to do a page redirect using the php 'Header' function to another frame. No. Use Javascript. -- John Holmes php|architect - The magazine for PHP professionals - http://www.phparch.com -- PHP General Mailing List (http://www.php.net/) To unsubscr

Re: [PHP] redirecting to another frame using php header function

2004-08-11 Thread John Nichel
bruce wrote: hi... can anyone point me to a way to do a page redirect using the php 'Header' function to another frame. I have a page in one frame, when the user does a submit, i want to have the app do a redirect using the 'Header' function, with the subsequent page being

[PHP] redirecting to another frame using php header function

2004-08-11 Thread bruce
hi... can anyone point me to a way to do a page redirect using the php 'Header' function to another frame. I have a page in one frame, when the user does a submit, i want to have the app do a redirect using the 'Header' function, with the subsequent page being displayed in an

Re: [PHP] header function, I'm stumped

2003-12-09 Thread Jon Kriek
-- Jon Kriek www.phpfreaks.com www.jonkriek.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] header function, I'm stumped

2003-12-09 Thread Chris Shiflett
--- Kelly Hallman <[EMAIL PROTECTED]> wrote: > On Tue, 2 Dec 2003, Chris Hubbard wrote: > > All, dealing with header("location:...") again. and trying to > > understand what's happening. I've got the following code: > > header("Location:http://www.mysite.com/cp/ad/ad_details.php?id=";. > $id); >

Re: [PHP] header function, I'm stumped

2003-12-09 Thread Kelly Hallman
On Tue, 2 Dec 2003, Chris Hubbard wrote: > All, dealing with header("location:...") again. and trying to > understand what's happening. I've got the following code: > header("Location:http://www.mysite.com/cp/ad/ad_details.php?id=";. $id); I'm kinda surprised I didn't see this mentioned.. Have yo

Re: [PHP] header function, I'm stumped

2003-12-02 Thread Chris Shiflett
--- Chris Hubbard <[EMAIL PROTECTED]> wrote: > header("Location:http://www.mysite.com/cp/ad/ad_details.php?id=";. $id); There should be a space after the first colon there. > Then I used LiveHTTPHeaders in Mozilla and it give me some interesting > information, though I'm not quite sure how to int

[PHP] header function, I'm stumped

2003-12-02 Thread Chris Hubbard
All, dealing with header("location:...") again. and trying to understand what's happening. I've got the following code: writeMessage($id); header("Location:http://www.mysite.com/cp/ad/ad_details.php?id=";. $id); writeMessage() is a debugging function that writes the value of the variable to a d

Re: [PHP] php header function

2003-10-24 Thread Chris Shiflett
--- Shaun van den Berg <[EMAIL PROTECTED]> wrote: > I have tried the net , googling ect. but i cannot get a good > description of what the header function is al about ? Can anyone > please define the header function. It allows you to specify an HTTP header to be included in the response to the Web

RE: [PHP] php header function

2003-10-24 Thread chris . neale
EMAIL PROTECTED] Sent: 24 October 2003 09:47 To: [EMAIL PROTECTED] Subject: [PHP] php header function Hi I have tried the net , googling ect. but i cannot get a good description of what the header function is al about ? Can anyone please define the header function. Thanks Shaun -- Novtel Consu

[PHP] php header function

2003-10-24 Thread Shaun van den Berg
Hi I have tried the net , googling ect. but i cannot get a good description of what the header function is al about ? Can anyone please define the header function. Thanks Shaun -- Novtel Consulting Tel: +27 21 9822373 Fax: +27 21 9815846 Please visit our website: www.novtel.co.za -- PHP Ge

[PHP] header() function...

2003-10-14 Thread Tristan . Pretty
We've just moved sites, to a new URL... on the home page of the old url, I simply had a page that was; http://www.newsite.com); ?> All good, any requests to that page, were cleanly redirected to the new site. I know this cause I tested it many times... Now on the stats for the new site, we can

Re: [PHP] header() function for displaying an opened PDF document.

2003-10-14 Thread Scott Fletcher
Sent: 13 October 2003 22:15 > To: [EMAIL PROTECTED] > Subject: [PHP] header() function for displaying an opened PDF document. > > > I seem to be having problem with sending the PDF document to the browser to > be open on screen. I kept getting the error message, it say '

Re: [PHP] header() function for displaying an opened PDF document.

2003-10-14 Thread Scott Fletcher
Not using the session. :-) Oh well... "Marek Kilimajer" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Are you using sessions? Then you need > session_cache_limiter('private_no_expire'); > > Scott Fletcher wrote: > > > I seem to be having problem with sending the PDF document to t

Re: [PHP] header() function for displaying an opened PDF document.

2003-10-14 Thread Marek Kilimajer
Are you using sessions? Then you need session_cache_limiter('private_no_expire'); Scott Fletcher wrote: I seem to be having problem with sending the PDF document to the browser to be open on screen. I kept getting the error message, it say 'Windows cannot open this file'. Here's my sample scri

RE: [PHP] header() function for displaying an opened PDF document.

2003-10-13 Thread Bertrand Moulard
ssage- From: Scott Fletcher [mailto:[EMAIL PROTECTED] Sent: 13 October 2003 22:15 To: [EMAIL PROTECTED] Subject: [PHP] header() function for displaying an opened PDF document. I seem to be having problem with sending the PDF document to the browser to be open on screen. I kept getting the error me

RE: [PHP] header() function for displaying an opened PDF document.

2003-10-13 Thread Bertrand Moulard
PROTECTED] Subject: [PHP] header() function for displaying an opened PDF document. I seem to be having problem with sending the PDF document to the browser to be open on screen. I kept getting the error message, it say 'Windows cannot open this file'. Here's my sample script, so what am

[PHP] header() function for displaying an opened PDF document.

2003-10-13 Thread Scott Fletcher
I seem to be having problem with sending the PDF document to the browser to be open on screen. I kept getting the error message, it say 'Windows cannot open this file'. Here's my sample script, so what am I doing wrong?... --snip-- header("Content-Type: application/pdf"); header("Content

Re: [PHP] header function problem

2003-06-06 Thread Daniel J. Rychlik
> To: <[EMAIL PROTECTED]> Sent: Thursday, June 05, 2003 1:01 AM Subject: Re: [PHP] header function problem > On Thursday 05 June 2003 07:01, Daniel J. Rychlik wrote: > > Well, it works if I use the full path instead of relative So obviously > > its an apache permissions

Re: [PHP] header function problem

2003-06-05 Thread Jason Wong
On Thursday 05 June 2003 07:01, Daniel J. Rychlik wrote: > Well, it works if I use the full path instead of relative So obviously > its an apache permissions issue. It has nothing to do with apache. The specs require that the location is absolute. -- Jason Wong -> Gremlins Associates -> ww

Re: [PHP] header function problem

2003-06-05 Thread Daniel J. Rychlik
Well, it works if I use the full path instead of relative So obviously its an apache permissions issue. - Original Message - From: "Daniel J. Rychlik" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, June 04, 2003 5:36 PM Subject: [PHP] header f

[PHP] header function problem

2003-06-05 Thread Daniel J. Rychlik
I am using a header function to take a user back to a form if they have mistyped or entered in data that is not desirable. I have multiple functions that Ive written but the one that pertains to this situation is listed function check_data () { if (!empty($value)) { go_ba

Re: [PHP] header function

2003-03-10 Thread Barry Gould
ch 10, 2003 4:26 PM Subject: Re: [PHP] header function > I'm starting to think this is a BUG. > > Can anyone else test this and confirm or contradict? > > Thanks, > Barry > > At 03:35 PM 3/7/2003, you wrote: > >I am having a hard time with the header("L

Re: [PHP] header function

2003-03-10 Thread CPT John W. Holmes
Use INCLUDE(), not virtual(). virtual() isn't supposed to be used with PHP files. ---John Holmes... - Original Message - From: "Barry Gould" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, March 10, 2003 4:26 PM Subject: Re: [PHP] header function &

Re: [PHP] header function

2003-03-10 Thread Barry Gould
I'm starting to think this is a BUG. Can anyone else test this and confirm or contradict? Thanks, Barry At 03:35 PM 3/7/2003, you wrote: I am having a hard time with the header("Location:") function inside an include file with PHP 4.3.1 (Linux, running as a module w/ Apache 1.3.27). At the VERY

Re: [PHP] header function

2003-03-10 Thread Barry Gould
are trying to access a value stored in a session variable, you need to initialize the session first, then access the variable. Jim - Original Message - From: "Barry Gould" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, March 07, 2003 3:35 PM Subject: [PHP]

Re: [PHP] header function

2003-03-07 Thread Jim Lucas
arry Gould" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, March 07, 2003 3:35 PM Subject: [PHP] header function > I am having a hard time with the header("Location:") function inside an > include file with PHP 4.3.1 (Linux, running as a module w/ Apache 1.3

[PHP] header function

2003-03-07 Thread Barry Gould
I am having a hard time with the header("Location:") function inside an include file with PHP 4.3.1 (Linux, running as a module w/ Apache 1.3.27). At the VERY TOP of my php page, I have: logincheck.php contains exactly: However, if this "agent_id" is not set, I just get a blank page with html

Re: [PHP] header function

2002-11-09 Thread Ernest E Vogelsinger
At 20:47 09.11.2002, Donahue Ben said: [snip] >I am using the header function what i have is this: > >header("Location: >http://".$_SERVER['HTTP_HOST'].dirname($_SERVER['PHP_SELF'])."/".$relative_url > >$relative_url is a php file > >when i run this script wi

Re: [PHP] header function

2002-11-09 Thread Stephen
The file loading may be too long for PHP to recognize it or whatever. Try shortening it in some way. - Original Message - From: "Donahue Ben" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, November 09, 2002 2:47 PM Subject: [PHP] header function &

[PHP] header function

2002-11-09 Thread Donahue Ben
I am using the header function what i have is this: header("Location: http://".$_SERVER['HTTP_HOST'].dirname($_SERVER['PHP_SELF'])."/".$relative_url $relative_url is a php file when i run this script with this header function in it, i get an error saying:"Redirection limit for this URL has excee

Re: [PHP] php header function...

2002-11-08 Thread Marco Tabini
Try removing all leading spaces between the shebang and the beginning of the script: #!/usr/bin/php -q Hey, > > > > Got a problem using the header function on a file upload page to redirect > the user back to a web page. Here's the code: > > > > #!/usr/bin/php -q > > > > > > > $file

[PHP] php header function...

2002-11-08 Thread Brad Apps
Hey, Got a problem using the header function on a file upload page to redirect the user back to a web page. Here's the code: #!/usr/bin/php -q http://www.webfusion.net.au...";); else print("Error"); Any ideas on how i would get this to work. The error which shows is Warning:

RE: [PHP] header() -- function failed to due caching.

2002-05-15 Thread Patrick Lynch
e time? Regards, Patrick Lynch http://www.optip.com/ -Original Message- From: Scott Fletcher [mailto:[EMAIL PROTECTED]] Sent: 15 May 2002 18:31 To: [EMAIL PROTECTED] Subject: [PHP] header() -- function failed to due caching. I tried to use this script but it failed due to the c

[PHP] header() -- function failed to due caching.

2002-05-15 Thread Scott Fletcher
I tried to use this script but it failed due to the caching. Does anyone know the way around hte problem or have a solution to the problem? --- example script $url_address = $GLOBALS["HTTP_HOST"]; switch ($url_address) { case "www.php.net": $url_address = "ht

[PHP] Header function not working header('Window-target: _top');

2002-05-12 Thread Michael P. Carel
Hi to all, Sorry for bringing back this type of topic, But this type of header call really doesnt work for me here. I've tested many time's the example below that was given by Dan but it really doesnt work. Im already using php4.2 in apache 1.3.24 . Based on the example below i've just removed/un

RE: [PHP] Header() function and redirect

2001-08-30 Thread Don Read
On 30-Aug-2001 Zhu George-CZZ010 wrote: > But I have to wait for the application to finish. The idea is: the > application will take the file, and convert it into PDF file (it takes more > than 30 seconds generally), then display the generated PDF file. > > I am just wondering if I can use "Hea

Re: [PHP] Header() function and redirect

2001-08-30 Thread
From: Zhu George-CZZ010 <[EMAIL PROTECTED]> Date: Thu, Aug 30, 2001 at 11:27:41AM -0500 Message-ID: <[EMAIL PROTECTED]> Subject: RE: [PHP] Header() function and redirect > But I have to wait for the application to finish. The idea is: the application will >take the file, a

RE: [PHP] Header() function and redirect

2001-08-30 Thread Zhu George-CZZ010
page, then in that page, redirect to the PDF file. Thanks, George -Original Message- From: * R&zE: [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 30, 2001 11:19 AM To: Zhu George-CZZ010; [EMAIL PROTECTED] Subject: Re: [PHP] Header() function and redirect From: Zhu George-

Re: [PHP] Header() function and redirect

2001-08-30 Thread
From: Zhu George-CZZ010 <[EMAIL PROTECTED]> Date: Thu, Aug 30, 2001 at 11:10:19AM -0500 Message-ID: <[EMAIL PROTECTED]> Subject: [PHP] Header() function and redirect > > I am using Apache and PHP. I encountered a redirect problem in PHP, and traced it >down, so, I gener

[PHP] Header() function and redirect

2001-08-30 Thread Zhu George-CZZ010
I am using Apache and PHP. I encountered a redirect problem in PHP, and traced it down, so, I generated a very short PHP page as following: http://tt.mot.com/to_pdf/pdf_tmp/test.pdf";; Header("Location: $goto"); exit;

Re: [PHP] header function

2001-08-21 Thread Christian Reiniger
On Tuesday 21 August 2001 16:53, Jay Paulson wrote: > I have a slight problem.. I'm running php 4.0.6 on RedHat 7.1 and I run > my script and it hit's: > > header("Location:index.php"); > > well the thing is once it hits that line in my script and just fails, > however i don't get any type of par

Re: [PHP] header function

2001-08-21 Thread Jay Paulson
exactly is going on. [Mon Aug 20 17:23:03 2001] [error] [client 64.132.13.114] File does not exist: /home/username/htdocs/admin/.php - Original Message - From: "Tyler Longren" <[EMAIL PROTECTED]> To: "Jay Paulson" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTEC

Re: [PHP] header function

2001-08-21 Thread Tyler Longren
Well, it's not a good idea to put something (like an echo) before a header()...even for testing because that will prevent the header() from working at all. You should have gotten an "All headers have been sent" or some similar error. -- Tyler Longren Captain Jack Communications [EMAIL PROTECTED]

[PHP] header function

2001-08-21 Thread Jay Paulson
Hello everyone- I have a slight problem.. I'm running php 4.0.6 on RedHat 7.1 and I run my script and it hit's: header("Location:index.php"); well the thing is once it hits that line in my script and just fails, however i don't get any type of parse error the browser just says 404 error page no

[PHP] header function

2001-08-20 Thread Jay Paulson
Hello everyone- I have a slight problem.. I'm running php 4.0.6 on RedHat 7.1 and I run my script and it hit's: header("Location:index.php"); well the thing is once it hits that line in my script and just fails, however i don't get any type of parse error the browser just says 404 error page no