CARGAR CONTENIDO,FUNCION, ETC CON AJAX, JQUERY Y PHP


/ Published in: jQuery
Save to your folder(s)

Enviar datos por medio de $.ajax, propidad de jquery que permite ocupar ajax con php en jquery, se puede ocupar para cualquier cosa


Copy this code and paste it in your HTML
  1. // documento principal
  2. $(document).ready(function(){
  3.  
  4. $("#send_contact").click(function(){
  5.  
  6. var nombre = $("#nombre").attr("value");
  7. var email = $("#email").attr("value");
  8. var tip_contact = $("#tip_contacto").attr("value");
  9. var texto = $("#mensaje").val();
  10.  
  11. $.ajax({
  12. type: "POST",
  13. url: "<?=get_template_directory_uri()?>/send_contacto.php",
  14. data: "nombre="+nombre+"&email="+email+"&tip_contact="+tip_contact+"&texto="+texto,
  15. success: function(msg){
  16. alert( "Su mensaje ha sido enviado" );
  17. }
  18. });
  19. });
  20.  
  21. });
  22.  
  23.  
  24. // DOCUMENTO QUE LLAMA send_contacto.php
  25.  
  26. $nombre = $_POST['nombre'];
  27. $email = $_POST['email'];
  28. $tip_contact = $_POST['tip_contact'];
  29. $texto = $_POST['texto'];
  30. $date = date('Y-m-d');
  31.  
  32. $sql = mysql_query("INSERT INTO $table_name(id,nombres,mail,asunto,mensaje,fecha_envio)VALUES(NULL,'$nombre','$email','$tip_contact','$texto','$date');",$link);

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.