
31/10/2006, 12:04
|
 | | | Fecha de Ingreso: noviembre-2004 Ubicación: Villa Ballester Bs-As|Ar
Mensajes: 2.002
Antigüedad: 20 años, 3 meses Puntos: 34 | |
Minimamente acostumbrate a separar lo que es html de php, te ayudara mucho!, es mejor hacer lo siguiente a lo que estas haciendo:
<table width="228" border="0" cellspacing="0" cellpadding="0" height="100%">
<tr>
<td><?=$rs["columna"];?></td>
</tr>
</table>
Y a tu problema, es que
'agregacar.php?<?php echo $SID; ?>&codigo=<?php echo $row['codigo']; ?>'
Debería ser (ya tenes un echo):
'agregacar.php?".$SID."&codigo=".$row['codigo']."' |