Jump to content

ayudaa como dejar comentario a mi pagina


Recommended Posts

<?php

if(isset($_POST['send'])){
$nombre = $_POST['name'];
$comment = $_POST['comment'];

ACA AGREGAR A LA BASE DE DATOS.

}
else{
echo '<form method="post" action="'.$_SERVER['SELF_PHP'].'">
Nombre <input type="text" name="name"/><br/>
Comentario <textarea name="comment"></textarea>
<input type="submit" value="Enviar" name="send"/>';
}

?>

 

Y listo...

el modo en que guardas los comentarios depende podria ser con MySQL, XML, texto plano, etc...

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...