Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re: Building a webpage with Perl

by wfsp (Abbot)
on Apr 11, 2011 at 11:23 UTC ( [id://898690]=note: print w/replies, xml ) Need Help??


in reply to Building a webpage with Perl

...not sure how to make it a webpage.
I would recommend having a look at HTML::Template. I like the idea of not having any HTML in my scripts but, as you may guess, in a template. The docs are very good and you should be able to pick it up fairly easily. If you have a reasonable grasp of arrays and hashes, as you indicate, that's a plus. Perhaps two simple examples might best demonstrate the idea.

The first one creates a web page with a message.

#!/usr/bin/perl use v5.12.2; use warnings; use strict; use HTML::Template; my $t = HTML::Template->new( filename => q{my_template_msg.html}, ); my $msg = q{Hello World}; $t->param(message => $msg); my $output = $t->output; say $output;
the template (my_template_msg.html)
<html> <head> <title>my template message</title> </head> <body> <p><TMPL_VAR message></p> </body> </html>
and the output
<html> <head> <title>my template message</title> </head> <body> <p>Hello World</p> </body> </html>
The second demonstrates displaying a list (something you would be interested in)
#!/usr/bin/perl use v5.12.2; use warnings; use strict; use HTML::Template; my $t = HTML::Template->new( filename => q{my_template_list.html}, ); my @colours = qw{red orange yellow green blue indigo violet}; # build an array of hashes (AoH) my @colour_params; for my $colour (@colours){ push @colour_params, {colour => $colour}; } $t->param(colours => \@colour_params); my $output = $t->output; say $output;
The template (my_template_list.html)
<html> <head> <title>my template list</title> </head> <body> <ul> <TMPL_LOOP colours> <li><TMPL_VAR colour></li> </TMPL_LOOP> </ul> </body> </html>
and the output (whitespace trimmed for brevity)
<html> <head> <title>my template list</title> </head> <body> <ul> <li>red</li> <li>orange</li> <li>yellow</li> <li>green</li> <li>blue</li> <li>indigo</li> <li>violet</li> </ul> </body> </html>
The benifits I see of this approach is that your Perl script still looks like a Perl script and your HTML still looks like HTML. Mixing them up, imo, always looks like a mess.

Get these working (holler if you get stuck) and put them somewhere safe. When you're developing something more complex you'll have something to fall back on that works which, for me at least, is an aide to restoring sanity. :-)

HTML::Template doesn't come with perl, you'll have to install it. There are plenty of posts and tutorials on that if you're not familiar with it. Again, shout if you hit a snag.

There are also modules that will help you with the previous/next buttons. I use the, imo, very excellent Data::Page. Perhaps another time.

Best of luck and let us know how you get on.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (5)
As of 2024-04-24 06:03 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found