es dicir si escribo tengo un pagina ;altacomentario
escribo un comentario y en index me sale una linia recta sin fin
quiero que salga una linia de bajo otra
gracias
este es mi codigo
Código PHP:
Ver original
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>Ejercicio Nro. 26</title> <meta http-equiv="" content="text/html; charset=iso-8859-1"> <meta http-equiv="" content="text/html; charset=iso-8859-1"></head> <font color="#000000" face="Courier New, Courier, mono"> <h2 align="center"><strong>Responder Mensaje</strong></h2> </font> <form action="procesamensaje.php" method="post"> <table width="100%" border="0"> <tr> <td width="40%"align= "right"><em>Nombre :</em></td> <td ><input name="autor" type="text" size="30" maxlength="30"></td> </tr> <tr> <td align="right"><em>E-Mail :</em></td> <td><input name="correo" type="text" size="30" maxlength="30"></td> </tr> <tr> <td align="right"><em>Mensaje :</em></td> [B]<td><textarea name="mensaje" cols="40" rows ="10" maxlength ="50">[/B]</textarea> </td> </tr> <tr> </td> </tr> <tr> <td><input TYPE= "hidden" NAME="padre" value=<?echo $var1;?> </td> </tr> <td ><input type="submit" value="Grabar"></td> </tr> </table> <hr> <table align='center' border='0' bordercolor="#FFffff" > <tr bgcolor='#666666'><td> <p align="center"><a href="index.php"><img src="BACKGLOW.GIF" width="60" height="30" border="0"></a></p> </td></tr> </form> </html>
este es el listarcomentarios
Código PHP:
Ver original
<!doctype html public "-//W3C//DTD HTML 4.0 //EN"> <html> <head> <title>Title here!</title> </head> <body> <table align='center' border='0' bordercolor="#FFffff" > <tr bgcolor='#666666'> <td> <p align="center"><a href='index.php'><font size='4' color='white'>Volver Foro</font> </a></p> </td> <?$pp=$var;?> <td> <? print ("<p align='center'><a href='altamensaje.php?var1=$pp'><font size='4' color='white'>Responder Mensaje</font> </a></p>");?> </td> <td> <p align="center"><a href='altatema.php'><font size='4' color='white'>Agregar Nuevo Tema</font> </a></p> </td> </tr> <?php $leer = "SELECT ID,Autor,Fecha,Email,Mensaje,ruta FROM comentarios WHERE Padre=$var"; print("<table align='center' width='50%' border='0'>"); print ("<td> <img src='".$fila[5]."'> <br><font size='4' color='blue'>Autor :</font> ".$fila[1]." <br><font size='4' color='blue'>Fecha : </font>".$fila[2]." <br><font size='4' color='blue'>E-mail : </font>".$fila[3]." <br><font size='4' color='blue'>Mensaje : </font>".$fila[4]." <tr ><td colspan='2'><hr></td></tr>"); } print ("</table>"); } else { print ("No se puede conectar. Intente nuevamente"); } ?> <hr> </body> </html>