> >I have a problem setting my headers right with php running as .cgi. I
> >have to specify a Content-type for the cgi file to work. But how
> >should I do both that and start a session?
> >
> >I have a few options:
> >
> >#! /usr/local/bin/php
> ><?php
> >    session_start();
> >    print 'Content-type: text/html' . "\n\n";
> >
> >This way $_SESSION['count'] stays unset even though I say
> >$_SESSION['count'] = 1; in my program.
> >
> >To swap the two lines won't work because I heard \n\n terminates the
> >header portion. Anyway, here goes:
> 
> Stupid question: Have you tried

Well, there's one thing I have found out here and that is that there's
no such thing as a stupid question. I've tried searching for
Content-type and session_start without getting any wiser :-(

> header ('Content-type: text/html');
> 
> I'm pretty sure it will work.

Tried it, didn't word I'm afraid. The text inside doesn't contain
anything that's treated differently by " and '. 


--
Børge

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

Reply via email to