Posted by Stefan Mueller on 11/27/05 02:38
>> Sometimes I see the following text on my PHP generated page
>> HTTP/1.1 100 Continue
>>
>> What's that and how can I avoid that?
>> Stefan
>>
>
> <?PHP
> header("Connection: close");
> header("Expires: -1");
> ?>
Thanks for your reply. However, I can't test your code because I don't know
how to reproduce the message
HTTP/1.1 100 Continue
I just know that I sometimes saw it on my PHP generated page.
Does someone know when this message appears?
Stefan
PS: Where do I have to put your code? At the beginning of my page? Does this
destroy my PHP session?
[Back to original message]
|