Ajax как descibe в другом посте, но вот какой код вам нужно сделать:
$(".bttn_insert").live('click',
function()
{
var post_data = {
data_number:$(this).attr('data-number')
}
$.post('getdetails.php',post_data,function(data){
//Gets called upon completion.
$('#some_selector p').html(data);
})
}
);
и PHP-файл, в зависимости от конфигурации:
<?php
//include 'your functions';
//or
/*
function getDetails(){...}
*/
if(!empty($_POST['data_number']))
{
if(is_numeric($_POST['data_number']))
{
echo getDetails( (int)$_POST['data_number'] );
}
}
?>