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?
from perldoc CGI: header() returns the Content-type: header. You can provide your own MIME type if you choose, otherwise it defaults to text/html. header() tells the browser what to expect, but does not produce viewable document html. you can specify a human-readable message, and i'd suggest you read the perldoc to find out how. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
