[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

RE: [PHP] php header function

2003-10-24 Thread chris . neale
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 Consulting

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

[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 ?php $filedest = /home/$directory; if (copy($clientfile,$filedest/$clientfile_name)) header(Location:

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 ?php Marco -- php|architect - The magazine for PHP Professionals The first monthly worldwide magazine dedicated to PHP programmers On Fri, 2002-11-08 at 21:55, Brad Apps