Hola, como hago para que cuando use el sistema de noticias, que cuando ponga un mensage nuevo no me borre en anterior, si no que me lo cree en otra paguina html...
este nes el codigo:
este es el form que manda:
Código HTML:
<center>
<table width="200" height="210" border="0">
<tr>
<td> </td>
</tr>
</table>
<table width="404" height="158" border="1">
<tr>
<td height="115"><form action="verifica.php" method="post" id="formulario">
<center><table border="0">
<tr>
<td width="162"><b>Escribe la Noticia : </td><td width="151"><input name=titulo></td></tr>
</table>
<p> </p>
</center>
<p>
<center><input type="Submit" value="Mostrar Noticia" /></center>
</p>
</form>
</td>
</tr>
</table></center>
<p> </p>
y este el que recibe y deve crear el html
(y el que deveria de modificar pero no se como hacerlo para que haga lo que quiero):
Código PHP:
<?php
$fp = fopen("Noticia.html", "w");
fputs($fp, "<br><b><br><center>".$_POST['titulo']."</center><hr>");
fclose($fp);
echo "<b>La Noticia a sido Publicada.</b>";
?>