Tambien puedes usar javascript.
Formulario:
Código HTML:
<form action="javascript:icpm()" name="formulario">
Peso: <input type="text" id="peso"/><br/>
Altura: <input type="text" id="altura"/><br/>
<input type="submit" value="Calcular ICPM"><br>
ICPM: <input type="text" id="icpm"/>
</form>
Ahora el javascript
:
Código:
<script type="text/javascript">
<!--
function icpm(){
var peso = document.getElementById('peso').value;
var altura = document.getElementById('altura').value;
document.getElementById('icpm').value = peso*altura;//Ponga aquí la formula adecuada
}
//-->
</script>