Hi guys,

Have been trying to learn cgi and perl since a couple of days. and have been stuck here...

I would like to change the title and contents of table using buttons but have no clue how to proceed.

this is my code so far...

I want the tomorrow and yesterday buttons to change the table and set title button to set the title... can anyone point out how i should proceed??

#!/usr/bin/perl -w use CGI qw(:all) ; my $today; my $thismonth; my $thisyear; chomp($today = `date +"%-d"`); chomp($thismonth = `date +"%-m"`); chomp($thisyear = `date +"%Y"`); $cgi = CGI->new; print $cgi->header,$cgi->start_html("$today.$thismonth.$thisyear"); print<<HTML; <table border=1> <tr> <td><button type="button" onclick="dont know what to put here">Yes +terday</td> <td>$today</td> <td>$thismonth</td> <td>$thisyear</td> <td><button type="button" onclick="dont know what to put here">Tom +orrow</td> <td><button type="button" onclick="dont know what to put here">Set + Title</td> </tr> </table> HTML print $cgi->end_html;

In reply to changing title of a webpage dynamically by tejas

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.