ARCHIVO AGREGAR.HTML
Código PHP:
<form action="new.php" method="post" name="form1" id="form1">
<strong> Titulo de la nota: </strong>
<label>
<input name="titulo" type="text" id="titulo" value="Aqui pones el titulo" />
</label>
<br />
<strong>Icono de la nota: </strong>
<label>
<input type="text" name="icono" id="icono" />(Debe medir 90 x 70)
</label>
(Debes incluir http://)
<br />
<strong>Fecha de la nota:
<label> </label>
</strong>
<label>
<input type="text" name="fecha" id="fecha" />
</label>
<br />
<strong>Texto de la nota: </strong>
<label>
<textarea name="texto" cols="50" rows="5" id="texto"></textarea>
</label>
<br />
<br />
<label>
<input type="submit" name="button" id="button" value="Enviar Nota!" />
</label>
</form>
Código PHP:
<div align="center">
<?php
$titulo = $_POST['titulo'];
$icono = $_POST['icono'];
$fecha = $_POST['fecha'];
$texto = $_POST['texto'];
$contenido = '<div align="center"><img width="90" height="70" src="'.$icono.'" align="center"><b><br>'.$titulo.'</b><br />   <b>Posteado el dia: </b>'.$fecha.'<br /><b>Nota:</b><br />'.$texto.'<br />_____________________________________________________</div><br><br><br><br>';
$f = fopen('index2.html', 'r+');
if (fwrite($f, $contenido)){
echo 'Bien hecho inu!, se logró poner la nota <b>correctamente</b>';
} else {
echo 'No se pudo poner la nota correctamente, sorry u.u';
}
?>
</div>