Hi,

On Wed, 6 Mar 2002, Octavian Rasnita wrote:

> Why if I use:
> print $q->header;
> print$q->start_multipart_form;
>
> the result does not contain the result of the first line, but only the <form
> ....> line?

print $q->header; prints out HTTP headers like 'Content-type: text/html'
and not html code.  You don't see HTTP headers visible in your browser.
This is like if you used print $q->redirect, you would get a Location:
HTTP header also not visible in the browser.

HTTP headers send information back and forth from the server and client,
while HTML is displayed in the client.  You can read about these headers
in the HTTP specs in RFC 2616 at the W3C web site.


Lisa Wolfisch Nyman  <[EMAIL PROTECTED]>  IT Warrior Princess
"Life is too short to wear ugly underwear."
Get the facts at http://quickfacts.census.gov/




-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to