How can I retrieve a PHP variable from jQuery? If I am using a jQuery POST function such as this:
$.post("login.php", {username:username, password:password}, function(data){
$('section').html(data);
});
Instead of showing 'data' is it possible to show a certain PHP variable from the PHP file to output?
echoout the contents of your variable then that's whatdatawill contain. – James Allardice Nov 19 '11 at 20:54