eso es javascript.
Código HTML:
<script>
function total(){
var cant = document.getElementById("cant").value;
var valor= document.getElementById("valor").value;
if(cant != '' && valor !=''){
document.getElementBy("total").value = cant * total;
}
}
</script>
<input name="valor" id="valor" onchange="total();">
<input name="cantidad" id="cantidad" onchange="total();">
<input name="total" id="total" readonly="readonly">