Guest User

Untitled

a guest
Dec 11th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. function Experiencia(...parámetros para definir la exp final){
  2. return expC = 50;
  3. }
  4.  
  5. <button id="btnInfComb"> <a href="enviaDatosCombate.php">Aceptar</a></button>
  6.  
  7. function EnviaDatosCombate() {
  8.  
  9. var xhr = new XMLHttpRequest()
  10. xhr.open("POST","ActualizaStat.php",true)
  11. xhr.onreadystatechange = function () {
  12. if(xhr.readyState == 4 && xhr.status == 200){
  13. var a = Experiencia()
  14. //Aca dentro que tendria que hacer para poder mandar el valor en
  15. //SEND
  16. }
  17. }
  18.  
  19. xhr.send(a)
  20. }
  21.  
  22. <?php
  23. $datos = $_POST['a'];
  24. echo $datos;
  25. ?>
Add Comment
Please, Sign In to add comment