gw1500se has asked for the wisdom of the Perl Monks concerning the following question:
Can someone help me get started? TIA.#! /usr/bin/perl -w use strict; use HTML::Display; my $browser=HTML::Display->new(); if (defined($browser)) { my $mypage="<html><body><h1>Hello world!</h1></body></html>"; $browser->display(html=>$mypage); } else { print("Unable to open browser: $@\n"); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: HTML::Display help needed
by jethro (Monsignor) on Aug 21, 2008 at 00:07 UTC | |
by gw1500se (Beadle) on Aug 21, 2008 at 09:20 UTC | |
by Corion (Patriarch) on Aug 21, 2008 at 10:24 UTC | |
by gw1500se (Beadle) on Aug 21, 2008 at 13:39 UTC | |
by Corion (Patriarch) on Aug 21, 2008 at 13:45 UTC | |
| |
by jethro (Monsignor) on Aug 21, 2008 at 14:15 UTC | |
|
Re: HTML::Display help needed
by Anonymous Monk on Aug 21, 2008 at 05:53 UTC |