Hi,
I am not quiet sure how jquery works. I want to know few things about the GET and POST in terms of jQuery.
I use the following code in my app :
<script>
function example_ajax_request() {
$('#example-placeholder').html('<p>Loading results ... <img src="ajax-loader.gif" /></p>');
$('#example-placeholder').load("ind.php?show=" + $('#box option:selected').val());
}
</script>
I am not using either GET or POST in this method.
I am using a button to call the example_ajax_request
to process the request and get the results.
Sometimes I see code like this:
$.ajax({
url: 'loader.php',
data: 'somedata',
method: 'GET',
success: function(data){
$('#er').text(data);
}
});
My doubt is, is it required or not that we use a method to post the data? (either GET or POST) while send and getting the data in PHP webapps? The code that I use first works fine even though I do not use any POST or GET methods.
Any inputs?
Thanks.