Ver Mensaje Individual
  #9 (permalink)  
Antiguo 07/05/2002, 09:31
Avatar de DARIOI
DARIOI
 
Fecha de Ingreso: mayo-2001
Ubicación: Gotland-Visvy
Mensajes: 181
Antigüedad: 24 años
Puntos: 0
Re: Sistema de noticias!

PASO UNO CREA UNA HTML

<html>

<head>
<title>Página principal</title>
</head>

<body>

<form method="POST" action="agrega_noticia.asp">
<p>Ttiulo:<br>
<input type="text" name="titulo" size="40"></p>
<p>Copete:<br>
<input type="text" name="copete" size="40"></p>
<p>Noticia:<br>
<textarea rows="4" name="noticia" cols="30"></textarea></p>
<p><input type="submit" value="Ingresar noticia" name="enviar"></p>
</form>
</body>
</html>