Ver Mensaje Individual
  #1 (permalink)  
Antiguo 06/06/2002, 12:42
Avatar de kaiowas
kaiowas
 
Fecha de Ingreso: septiembre-2001
Ubicación: el averno...
Mensajes: 531
Antigüedad: 22 años, 8 meses
Puntos: 0
sistema de noticias garrulo

Hola, estoy "creando" un publicador de noticias trapero para mi sitio, en principio y alo tengo casi hecho, solo que me gustaria mejorarlo:

-Por ejemplo me gustaria que en el campo del cuerpo de noticia, si quiero hacer un salto de linea no me toque escribir <br> .

- Y mi mayor problema viene cuando quiero hacer un enlace, que se me descuajaringa la tabla que me genera ya que algunas veces funciona y otras no....

este es el codigo:

<html>
<head>
<title>Insercion de noticias</title>
<link href="/css/mildcss.css" rel="stylesheet" type="text/css">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"></head>
<body bgcolor="#CCCCCC">
<H1 class="helv12">Insercion de noticias en mildnoise.com</H1>
<FORM ACTION="procesar.php">
<TABLE>
<TR>
<TD class="helv12">Titular:</TD>
<TD><INPUT TYPE="text" NAME="Titular" SIZE="50" MAXLENGTH="50"></TD>
</TR>
<TR>
<TD class="helv12">Imagen:</TD>
<TD><INPUT TYPE="text" NAME="Imagen" SIZE="50" MAXLENGTH="64"></TD>
</TR>
<TR>
<TD class="helv12">Cuerpo:</TD>
<TD><textarea name="Cuerpo" cols="50" rows="5" MAXLENGTH="255"></textarea></TD>
</TR>
</TABLE>
<INPUT TYPE="submit" NAME="accion" VALUE="Grabar">
</FORM>
<hr>
<?php
include("conex.php");
$link=Conectarse();
$result=mysql_query("select * from noticias order by id desc limit 10",$link);
?>
<TABLE BORDER=1 CELLSPACING=1 CELLPADDING=1>
<TR><TD> <B>Titular& lt;/B></TD><TD> <B>Imagen</B></TD> <TD> <B>Cuerpo</B> </TD> <TD> <B>Borrar</B> </TD></TR>
<?php

while($row = mysql_fetch_array($result)) {
printf("<tr><td> %s</td> <td><img src='%s'></td> <td> %s </td> <td><div align='center'><a href='borra.php?id=%d'>borra</a></tr>", $row["Titular"], $row["Imagen"], $row["Cuerpo"], $row["ID"]);
}
mysql_free_result($result);
mysql_close($link);
?>
</table>

</body>
</html>



<a href="http://www.mildnoise.com/"><img src="http://www.mildnoise.com/images/common/mildnoise5.gif" width="408" height="30" border="0" alt="mildnoise.com"></a>