--- Gabriel Peugnet <[EMAIL PROTECTED]> wrote:
> Could some one tell me where can I find the documentation for the
> Hedear() function?
> 
> The manual does not provide it but just some examples.
> 
> I know Header( "Location: http..." ), Header( "Expires ..." ).
> 
> But want to know about:
>     Content...
>     Content-Disposition
>     etc.

Those are HTTP headers. Truly, you can send any header you want, but if you
want to learn about all of the valid ones, it requires an understanding of
HTTP.

<shameless_plug>

The HTTP Developer's Handbook was written specifically for Web developers and
includes a complete reference to HTTP as well as many related topics such as
state and session management, SSL, etc. All of the examples are given in PHP.

You can read some sample chapters and get a bit more information from:

http://httphandbook.org/

</shameless_plug>

RFC 2616 contains about 80% of the specification. However, it is not very
friendly to read, plus the 20% it doesn't include can be important: cookies,
authentication, etc.

Hope that helps.

Chris

=====
My Blog
     http://shiflett.org/
HTTP Developer's Handbook
     http://httphandbook.org/
RAMP Training Courses
     http://www.nyphp.org/ramp

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to