add text fields together...

B

blackjack

Hi,

I'd like to use 2 text fields, and a button that when clicked , would add
the 2 fields together and display as a line of text, can anyone help with
this.

Cheers
bj
 
T

Toby Inkster

blackjack said:
I'd like to use 2 text fields, and a button that when clicked , would add
the 2 fields together and display as a line of text, can anyone help with
this.

<form method="get" action="<?= $_SERVER['PHP_SELF'] ?>"
onsubmit="this.c.value=Number(this.a.value)+Number(this.b.value);
return false;">
<fieldset>
<legend>Add things</legend>
<input name="a" value="<?= (real)$_GET['a'] ?>"> +
<input name="b" value="<?= (real)$_GET['b'] ?>">
<input type="submit" value="=">
<input name="c" value="<?= (real)$_GET['a'] + (real)$_GET['b'] ?>">
</fieldset>
</form>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,764
Messages
2,569,564
Members
45,039
Latest member
CasimiraVa

Latest Threads

Top