vegeta_ss5 Posted June 13, 2010 Report Share Posted June 13, 2010 quiero que las personas que entren ami pagina puedan dejar comentario , como lo puedo hacer ayudaa y que se vea asi como en el facebook , que todos la puedan ver Link to comment Share on other sites More sharing options...
alvaroxz Posted June 13, 2010 Report Share Posted June 13, 2010 <?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 More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now