Código
public function CalcPrestamo($monto, $interes, $tiempo){ $this->monpre = $monto; $this->intpre = $interes; $this->timepre = $tiempo; $interes /=100; $int = $monto * $interes; $pagCap = $monto / $tiempo; $cuotas = $int + $pagCap; $amort = $cuotas - $pagCap; $vf = $monto + $int; echo "<HR />"; echo "<h3><strong>Calculos del Prestamo</strong></h3>"; echo '<table width="361" border="0" cellspacing="2" cellpadding="1">'; echo "<tr>"; echo "<td width='295'><div align='right' class='style2'>MONTO: </div></td>"; echo '<td width="56"><div align="right" class="style2">'.$monto.'</div></td>'; echo '</tr>'; echo '<tr>'; echo '<td width="295"><div align="right" class="style2">INTERES:</div></td>'; echo '<td width="56"><div align="right" class="style2">'. $int .'</div></td>'; echo '</tr>'; echo '<tr>'; echo '<td width="295"><div align="right" class="style2">TIEMPO DE PAGO:</div></td>'; echo '<td width="56"><div align="right" class="style2">'.$tiempo.'</div></td>'; echo '</tr>'; echo "<tr>"; echo '<td width="295"><div align="right" class="style2">CUOTA</div></td>'; echo '<td width="56"><div align="right" class="style2">'.$cuotas.'</div></td>'; echo "</tr>"; echo "</table>"; echo "<br />"; echo "<table class='tableloans' align='center'>"; echo "<tr>"; echo "<th align='center'>TIEMPO</th>"; echo "<th align='center'>CUOTA</th>"; echo "<th align='center'>INTERES</th>"; echo "<th align='center'>AMORTIZACION</th>"; echo "<th align='center'>T AMORTIZADO</th>"; echo "</tr>"; for($i = 1; i <= $tiempo; $i++){ echo "<tr>"; echo "<td align='left'>".$tiempo . "</td>"; echo "<td align='left'>".$cuotas . "</td>"; echo "<td align='left'>".$int . "</td>"; echo "<td align='left'>".$amort . "</td>"; echo "<td align='left'>".$vf . "</td>"; echo "</tr>"; } echo "<table>"; //aqui no me imprime nada }
Gracias de ante mano!!!