Ver Mensaje Individual
  #1 (permalink)  
Antiguo 21/05/2010, 02:34
Avatar de Most
Most
 
Fecha de Ingreso: marzo-2009
Mensajes: 642
Antigüedad: 15 años, 8 meses
Puntos: 6
noticia en nueva ventana html

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>&nbsp;</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>&nbsp;</p>
    </center>
    <p>
     <center><input type="Submit" value="Mostrar Noticia" /></center>
    </p>
    </form>
      </td>
  </tr>
</table></center>
<p>&nbsp;</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>";

?>