Consistancy

Mixing your metaphors, ie. using CGI OO with flat HTML interpolation can get really messy and confusing. You might consider sticking with one, or even better use a templating system if you'll be doing multiple different pages.

These are my favourites (there are many other systems as well):

Here Docs

print <<"HTML"; This is what's called a here doc. HTML

Anything between the <<LABEL and the end LABEL, which must be on a line all by itself, will be interpretted as a string. You don't have to worry about quoting conventions. A straight here doc is like single quoting in Perl ('), but if you add the double quotes around the first label (") perl will interpolate your variables (substitute them).

select()

select REFRESH; print "Test";

"Test" will now be printed to the REFRESH handle. When you select a handle it becomes the active handle. Click the link for more info, and remeber to reset it when you're done!.

See Also


In reply to Re: Inserting CGI code in script tag by Arguile
in thread Inserting CGI code in script tag by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.