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