Help for this page

Select Code to Download


  1. or download this
        print $c start_html, h1("Chat write");
        print $c start_form(-action => "$url/write");
        print $c textfield("name","[I must change my name]", $NAME_MAX),
           submit("says:"), textfield("message", "", $MESS_MAX, $MESS_MAX,
    + 1);
        print $c end_form;
    
  2. or download this
        print $c start_html, h1("Chat write");
        print $c start_form(-action => "$url/write");
    ...
        print $c start_form(-action => "$url/write");
        print $c hidden("name","[I must change my name]", $NAME_MAX), subm
    +it("says:"), textfield("message", "", $MESS_MAX, $MESS_MAX, 1);
        print $c end_form;