Php

Auto Loading Records With PHP Using Ajax

Auto loading record is very important functionality to update a page based on window scroll, in real scenario you can see more post loading on your Facebook wall, whenever you reach at the end of the page. The functionality is whenever the vertical scroll down the records will update more records. We will use jQuery to get records async manner. You can download the source code at the end of the tutorial.

Step 1: We will create a table that will contain all records and add some dummy records to the MySQL table.

<ol id="results">
</ol>
<div class="result_div" style="display:none" align="center"><img src="ajax-loader.gif"></div>

Step 2: We will call jquery into the index file head section of index.php file.

<script type="text/javascript" src="js/jquery-1.9.0.min.js"></script>

Step 3: We will create a connection file and call into the ajax PHP file and index file.

Related Post
$db_username  = 'root';
$db_password  = '';
$db_name   = 'test';
$db_host   = 'localhost';
$limit = 5;
$mysqli = new mysqli($db_host, $db_username, $db_password,$db_name);

You need to change the connection object value as per your database credentials.

Step 4: We will call jquery ajax call into the index file and add an event for window scrolling.

$(window).scroll(function() { //detect page scroll
  
  if($(window).scrollTop() + $(window).height() == $(document).height())  //user scrolled to bottom of the page?
  {
   
   if(initRec <= total_rec &amp;&amp; loading==false) //there's more data to load
   {
    loading = true;
    $('.result_div').show(); //show loading image
    
    //load data from the server
    $.post('autoload.php',{'tot_limit': initRec}, function(data){
         
     $("#results").append(data); //append received data

     //hide loading image
     $('.result_div').hide(); //hide loading image
     
     initRec++; 
     loading = false; 
    
    }).fail(function(xhr, ajaxOptions, thrownError) { //any errors?
     
     alert(thrownError); //alert with HTTP error
     $('.result_div').hide(); //hide loading image
     loading = false;
    
    });
    
   }
  }
 });

You need call the jquery method into the index file for first-time records display.

Recent Posts

What is the Purpose of php_eol in PHP?

in this quick PHP tutorial, We'll discuss php_eol with examples. PHP_EOL is a predefined constant in PHP and represents an… Read More

2 months ago

Laravel Table Relationship Methods With Example

This Laravel tutorial helps to understand table Relationships using Elequonte ORM. We'll explore laravel table Relationships usage and best practices… Read More

2 months ago

Exploring the Power of Laravel Eloquent Join?

We'll explore different join methods of Laravel eloquent with examples. The join helps to fetch the data from multiple database… Read More

2 months ago

Quick and Easy Installation of Laravel Valet

in this Laravel tutorial, We'll explore valet, which is a development environment for macOS minimalists. It's a lightweight Laravel development… Read More

3 months ago

What is Laravel Soft Delete and How Does it Work?

I'll go through how to use soft delete in Laravel 10 in this post. The soft deletes are a method… Read More

3 months ago

Common Practices for Laravel Blade Template

in this Laravel tutorial, I will explore common practices for using the Laravel Blade template with examples. Blade is a… Read More

3 months ago

Categories