function myFunction() {
setTimeout(function(){
$.ajax({
url: "/info/show.php",
cache: false,
data: { full_name: <?php $_POST['full_name'] ?> },
success: function(html){
$(".info").html(html);
}
});
}, 150);
}