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

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...