i use this code :
$(document).ready(function() {
$.ajax({
url: 'server.php',
type: 'POST',
data : {temp : '100'},
success: function(data) {
alert('Load was performed.');
}
});
});
and just want to take the value of temp at the server.php file and print it , what im doing is $_POST['temp']; but dont have results