Código PHP:
<?php
$bdd_host = "localhost"; $bdd_user = "xxx;
$bdd_password = "xxxxxx"; $bdd = "xxxxxxxxx";
$conecta = mysql_connect($bdd_host,$bdd_user,$bdd_password);
mysql_select_db($bdd,$conecta);
if ($_POST["post"]) {
$contenido = strip_tags($_POST["contenido"]);
$contenido = str_replace("nr","<br>",$contenido);
$contenido = str_replace("rn","<br>",$contenido);
$contenido = str_replace("n","<br>",$contenido);
$fecha = time();
$post_noticia = "INSERT INTO noticias (autor,titulo,fecha,contenido) VALUES ('$autor','$titulo','$fecha','$contenido')";
mysql_query($post_noticia);
echo "
<b>Autor ...</b> $autor
<b>Titulo ...</b> $titulo
<b>contenido ...</b><br> $contenido
";
}
if (empty($post)) {
echo "<form action='news_post.php' method='post' name='form_noticias'><table width='52%' border='1' align='center' cellpadding='1' cellspacing='0' bordercolor='#330099' bgcolor='#498FC2'>
<tr>
<td width='21%'><strong><font color='#FFFFFF' size='2' face='Tahoma'> Autor</font></strong></td>
<td width='79%'><input name='autor' type='text' id='autor'></td>
</tr>
<tr>
<td><strong><font color='#FFFFFF' size='2' face='Tahoma'> Titulo</font></strong></td>
<td><input name='titulo' type='text' id='titulo' size='80'></td>
</tr>
<tr>
<td valign='top'><strong><font color='#FFFFFF' size='2' face='Tahoma'> Contenido</font></strong></td>
<td><textarea name='textarea' cols='80' rows='20'></textarea></td>
</tr>
<tr>
<td colspan='2' align='right'><input name='post' type='button' value='Enviar'> </td>
</tr>
</table></form>";
}
?>