Ver Mensaje Individual
  #3 (permalink)  
Antiguo 25/05/2012, 15:37
christopher_wallberg
 
Fecha de Ingreso: mayo-2012
Mensajes: 3
Antigüedad: 12 años
Puntos: 0
Respuesta: Sistema de monto crédito.

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&nbsp;<input name="tasainteres" type="text" size="10" id="tasainteres"/>&nbsp;<b>%</b>
<br><br>
Cuotas&nbsp;
<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 :)