i am trying to send datas from ajax to php, but php doesnt show it. both scripts are on the same site: "testpage.php".
jQuery/Ajax:
<script src="http://code.jquery.com/jquery-latest.js" type="text/javascript"></script>
<script>
  $(document).ready(function() {
    $("#button").click(function() {
      var test = "bla";
      $.ajax({
        url: "testpage.php",
        type: "post",
        data: test,
        success: function (response) {
          alert("test ok");
        },
        error: function(jqXHR, textStatus, errorThrown) {
          console.log(textStatus, errorThrown);
        }
      });
    });
  });
</script>
PHP:
      <?php
        if(isset($_POST["test"])) {
          $test2 = $_POST;
          echo $test2;
          echo "Test";
        }
      ?>
I do not see the result of PHP
 
     
     
     
     
    