Help for this page

Select Code to Download


  1. or download this
    First number: 
    <input type="text" id="num1"  />
    ...
    <input type="text" id="answer" />
    Add them:
    <input type="button" value="Add" onclick="addthem();" />
    
  2. or download this
    Your answer:
    <input type="text" id="answer" value="<tmpl_var answer>" />
    <input type="submit" value="Add" />
    
  3. or download this
    function addthem() {
       var num1 = document.getElementById("num1");
    ...
       var answer = num1 + num2;
       document.getElementById("answer").value = answer;
    }
    
  4. or download this
    use HTML::Template;
    use CGI;
    ...
    $template->param( answer => $num1 + $num2 )
    print "Content-type: text/html\n\n";
    print $template->output();