load the page content using jquery

load the page content using jquery

   Actually what i need to do is.First load the page content with load_value=0 and again load the page content with load_value=1 using for loop.
   here what exactly my doubt is,
   After completing the first iteration how to make its load with the load_value=1 ie. is increment of load_value.Its working with only one value of load_value either 1 or 0 but not of both with using of iteration. please help me guys it really urgent for me..
              


  1. loadMore();
  2. function loadMore() {
  3. $("<DIV>").load("<?php echo $url; echo $load_value=0;?>", function() {
  4. $("#product").append($(this).html());
  5. });
  6.     
}