I want to redirect page to URL that return from PHP script.
That when user created a post i want to return value of mysql_insert_id() for post_id.
$('input#submitButton').click( function() {
    $.ajax({
        url: 'newpost.php',
        type: 'post',
        dataType: 'json',
        data: $('form#myForm').serialize(),
        success: function(data) {
            window.location.replace("http://localhost/?post_id=...");
        }
    });
});
I looked here but not found what i want. Link
 
     
    