Cita: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<center>
<head><title>Sistema de Crédito</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="estilo.css" ></head>
Monto ingresado
<input name="cantidad" type="text" size="10" id="cantidad"/>
<br><br>
Tasa de interés <input name="tasainteres" type="text" size="10" id="tasainteres"/> <b>%</b>
<br><br>
Cuotas
<select>
<option value='selector'>---</option>
<?php
for($i=1;$i<=36;$i++)
echo "<option value='$i'>$i</option>";
?>
</select>
<br><br>
<input name="botonqlao" type="submit" value="Calcular"/>
<br><br><br><br>
<body>
<table class='datos'>
<tr><th>Nº de cuota</th><th>Capital</th><th>Interés</th><th>Valor Cuota</th><th>Saldo</th></tr>
<tr><td></td></tr>
</table><br><br>
</body>
</center>
</html>
Este es el código que llevo, como ven, soy bastante principiante y si tengo alguna ayuda mejor que mejor. Gracias :)