From the context of your post and this being your first writeup (as per your homenode), I presume (perhaps falsely):

With regard to the latter, check out the HTML 4.01 Specification (particularly note your misuse of form inputs). As to the perl... it would help if you actually posted the perl code as opposed to the HTML, however:

Your first question is purely HTML in nature. The problem is that the value itself is a mere string -- I believe you're looking for:

<font size=4><input type=radio value="HTML is not Perl"></font>

Ultimately you may have to use CSS for that purpose as the rendering of forum widgets (even the text of the values) is largely left to the individual browser. If you have any further questions regarding HTML or CSS, consult the specifications.

With regard to the latter question, you appear to be using a bit of Perl -- but with the wrong HTML. To title an HTML document with $title merely include the title tag in the head, eg:

<html> <head> <title>$title</tile> </head> <body> This is sparse CGI Output </body> </html>

Hopefully that should get you started. If you still need help, please post the actual code -- at least the pertinant sections.

UPDATE: After re-reading your post it's aparent that you used the term 'title' to reference a particular "feature" of your site as opposed to the actual HTML tag. Nevertheless, the problem appears to be a malfunctioning Perl CGI -- please post the relevant code.


In reply to Re: OT: values not working. by eibwen
in thread OT: values not working. by fred1010

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.