ok este es el código
Código PHP:
Ver original<?php
$t = new transferir();
$id = $_SESSION["id_usuario"];
?>
<table cellpadding="5" cellspacing="0" width="600" class="listado">
<thead>
<tr align="center"><th colspan="2"><b>CREDITOS ACTUALES</b></th></tr>
</thead>
<tbody>
<tr>
<form name="<?php echo "$id" ?>" method="post" action="?mod=transferir&Altas">
<td width="352">
<?php echo $t->creditos_altas(''); ?> Altas de <font color="#FF0000"><b><u><?php echo $_SESSION["creditos_altas"]?></u></b></font>
</td>
<td width="230"> Mover a <input name="id_usuario" type="hidden" value="<?php echo "$id" ?>" /> <input name="Aceptar" type="submit" value="Renovacion"/>
</td>
</form>
</tr>
<tr>
<form name="<?php echo "$id" ?>" method="post" action="?mod=transferir&Renovaciones">
<td>
<?php echo $t->creditos_renovaciones(''); ?> Renovacion de <font color="#FF0000"><b><u><?php echo $_SESSION["creditos_renovaciones"]?></u></b></font></td>
<td> Mover a <input name="id_usuario" type="hidden" value="<?php echo "$id" ?>" /> <input name="Aceptar" type="submit" value="Altas"/>
</td>
</form>
</tr>
</tbody>
</table>