ajax ile yollayabilirsin jquery ile aldığın veriyi yollama işlemini.
ör;
$('#yolla').click(function(e){
tweetsPerQry = parseInt($("#tweet_perqry").val())
userName = $("#screen_name").val()
$.ajax({
type: "POST",
url: "ajax.php",
data: {
perqry: tweetsPerQry,
screen_name: userName,
},
success: await function (result,err){
}
});
});