in reply to Re: Can the username be represented differently ?
in thread Can the username be represented differently ?

I get a "premature end of script headers" message, when trying with this

That would be because you are using CGI and not sending any headers :o) See CGI Help Guide

#!/usr/local/bin/perl -w print "Content-Type: text/plain\n\n"; print $>; print $/; print $<; print $/;

cheers

tachyon

Replies are listed 'Best First'.
Re^3: Can the username be represented differently ?
by peterr (Scribe) on Jun 28, 2004 at 06:21 UTC
    Boy, am I "rusty" or what, adding that line of code you suggested did the trick, the output to the browser is now:

    32149
    32149

    Thanks a lot,

    Peter