hi guys..firstly i'm sorry if my english is terrible.
i need some help in solving my problem..
in my webpage, i've a form which contains several textboxes and a submit button. all the textboxes are generated using php looping method. the codes are simply like this..
<?
for($i=0;$i<5;$i++){
?>
<input type=textbox name='<? echo "boxes[$i]";?>'>
<?
}
?>
so, what i wanna do is, when user click the submit button, it will sum up all the textboxes values and pop up alert message telling the total value.
thanx in advance..


