Ver Mensaje Individual
  #1 (permalink)  
Antiguo 29/06/2008, 14:27
iozk
 
Fecha de Ingreso: mayo-2008
Mensajes: 499
Antigüedad: 15 años, 11 meses
Puntos: 1
vomo evitar que las tablas se sobrepongan una tras otra

tengo el codigo asi..........
<?php
include('logn.php');
?>

<table width="90%" border="1" align="center" cellpadding="2" cellspacing="2" bordercolor="#000000" bgcolor="bluewhite">
<form name="f" action="agregar.php" method="post">
<input type="hidden" name="identificador" value="<?=$id?>">
<tr>
<td width="26%" align="right">Titulo</td>
<td colspan="2"><input type="text" name="titulo" value="<?=$titulo?>" /></td>
</tr>
<tr>
<td width="10%" align="right">Mensaje</td>
<td width="36%"><textarea name="mensaje" cols="50" rows="5"><?=$mensaje?></textarea></td>
<td width="38%" align="left" valign="top">Comandos permitidos:<br>
<strong> texto </strong><br>
[citar] Texto [/citar]<br>
<em>Texto</em> <br>
Código PHP:
 Codigo PHP 
</td>
</tr>
<tr>
<td width="26%" align="right">&nbsp;</td>
<td colspan="2"><input type="submit" name="Submit" value="Enviar Mensaje" /></td>
</tr>
</form>
</table>

que tiene???