Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: fortune

by zeno (Friar)
on Jan 26, 2001 at 14:45 UTC ( [id://54522]=note: print w/replies, xml ) Need Help??


in reply to fortune

Great job on this! I just added this line:
print "Content-Type: text/html\n\n";
as the first line of the script, put the resulting script into my cgi-bin, and set the resulting URL as my startup page for my browser. Now I get strange fortune wisdom every time I fire up my browser! Thanks for making my day just a little more surreal!

Replies are listed 'Best First'.
Re: Re: fortune
by davorg (Chancellor) on Jan 26, 2001 at 15:00 UTC

    Why are you giving it a content type of text/html? Looks like text/plain would be more appropriate - unless to want to change the script to actually output some HTML!

    --
    <http://www.dave.org.uk>

    "Perl makes the fun jobs fun
    and the boring jobs bearable" - me

      davorg is right! So I modified my original, um, modification to include some nice HTML formatting to it. Here's the new code. Thanks davorg for getting me to fix it! -timallen
      #!/usr/bin/env perl -w use strict; my $quip = ""; { $/ = "%%\n"; rand($.) < 1 && chomp($quip = $_) while(<DATA>); } print "Content-Type: text/html\n\n"; print "<html><head><title>Fortune Teller Says...</title></head>"; print "<body bgcolor=#CCFFFF>"; print "<h3>$quip</h3>" || "<font color=FF0000>Could not get quote</fon +t>"; print "</body></html>"; __END__
      ... followed by the original (hilarious) quips!
        First, I had trouble with __END__, seemed to work better with __DATA__.

        Here is the same thing looking a little more perlish and minus the deprecated FONT tag and BODY attributes and not using header tags to provide large text. Putting style back in using CSS is left as an exercise for the reader.
        #!/usr/bin/perl -w use strict; use CGI qw(:standard); my $quip = ""; { $/ = "%%\n"; rand($.) < 1 && chomp( $quip = $_ ) while(<DATA>); $quip = $quip || 'Doomed! No Fortune Found.'; } print header(), start_html( -title => 'Fortune Teller Says...' ), p( $quip ), end_html(); __DATA__

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://54522]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (3)
As of 2024-04-26 07:02 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found