i have a block of js in my php page that makes input textbox3 = textbox1 + txtbox2
==============
<input name="text4" type="text" onchange='javascript: text6.value = parseFloat (text5.value) + parseFloat (text4.value);'/>
<input name="text5" type="text" onchange='javascript: text6.value = parseFloat (text5.value) + parseFloat (text4.value);'/>
<input name="text6" type="text" />
==============
this works fine on a clean html page, but nothing happens when i insert the same code block in my php page
wondering if mnybody has any ideas?
thanks