I'm having trouble to send a serialized form through ajax to a php file. I can see the string on the client side, but on the server side I receive an empty array. I'm trying to save the form data into a database, but a I can't seem to find a way to separate every input, and show it in my php file after I sent with ajax.
JavaScript
$(function() {
  //twitter bootstrap script
  $("button#guardar").click(function(e) {
    //var info = $('#myform').serialize();
    var info = $('form.contact').serialize();
    $.ajax({
      type: "POST",
      url: "solicitudesProc.php",
      data: info,
      success: function(data) {
        alert(info);
        window.location.href = "solicitudesProc.php";
        //window.location.reload();
        $("#modalnuevo").modal('hide');
      },
      error: function(data) {
        alert("failure");
      }
    });
  });
});
<form class="contact" id="myform" method="post" name='alta'>
  <div class="modal-body">
    <div class="row">
      <div class="col-md-2">
        <label>Solicitante</label>
        <input type="text" class="form-control pull-right" name='solicitante' maxlength="20" required />
      </div>
      <div class="col-md-2">
        <label>Fecha Emision</label>
        <input type="text" class="form-control pull-right" name='fechaEmision' maxlength="20" />
      </div>
    </div>
    <div class="row">
      <div class="col-md-2">
        <label>Area Solicitante</label>
        <input type="text" class="form-control pull-right" name='area' maxlength="20" />
      </div>
    </div>
    <div class="modal-footer">
      <button type="button" class="btn btn-default" data-dismiss="modal">Cerrar</button>
      <button type="submit" id="guardar" name='guardar' class="btn btn-danger pull-right" value="guardar">Generar</button>
    </div>
</form>
server side solicitudesProc.php
<?php   $info = $_POST;
 echo $_POST["solicitante"]; print_r($_POST);  ?>
 
     
    