AJAX

Asynchronous Javascript And XML

What is Ajax

AJAX, or Asynchronous JavaScript and XML, is a technique used in web development that allows for the asynchronous exchange of data between a client (usually a web browser) and a server without requiring a full page refresh. This means that web applications can retrieve data from a server in the background while the user continues to interact with the page. AJAX primarily uses JavaScript to make HTTP requests to the server, which can then respond with data, typically in formats such as JSON or XML. This enhances user experience by making web applications feel faster and more responsive, as updates can occur dynamically without disrupting the user’s workflow.

The core of AJAX functionality relies on the XMLHttpRequest object, which is responsible for handling requests and responses between the client and server. With the advent of newer APIs like the Fetch API, the syntax for making asynchronous requests has become more streamlined and user-friendly. AJAX can be used for a variety of tasks, including loading new content, submitting form data, and retrieving data from APIs. By reducing the need for full page reloads, AJAX contributes significantly to the development of Single Page Applications (SPAs), where user interactions lead to dynamic content updates rather than traditional navigation.

In summary, AJAX programming represents a fundamental shift in how web applications communicate with servers, paving the way for more interactive and fluid user experiences. By leveraging asynchronous data fetching, developers can create applications that are not only faster but also more efficient, allowing for seamless interaction without the delays associated with full page reloads. As web technologies continue to evolve, AJAX remains a crucial component in modern web development, enabling the creation of rich, interactive user interfaces.

God to know about ajax

es, when you are using AJAX (Asynchronous JavaScript and XML), there must be a server involved because AJAX is primarily used to communicate with a server asynchronously. Here’s how it works and why a server is required:

Why is a Server Required?

  1. AJAX Purpose:
    • AJAX is used to send requests to a server in the background, without refreshing the entire webpage. The purpose is to fetch or send data (e.g., to/from a database or a file) dynamically from a server, and then update parts of the webpage based on the response.
  2. Client-Server Communication:
    • When an AJAX request is made, it’s either a GET or POST request (or any other HTTP method) to a server. The server processes the request, performs some action (like retrieving data, performing a database query, or executing logic in PHP, Node.js, etc.), and sends a response back to the client (browser).
  3. Server-Side Languages:
    • The server often runs a language like PHP, Node.js, Python, or Ruby, which can handle HTTP requests, execute logic, interact with a database, and return the response to the client.

AJAX Flow

  1. Client-side (Browser):
    • The browser (via JavaScript/jQuery) makes an AJAX request, usually for fetching or sending data. This could be a request for a JSON file, HTML content, or any other data.
  2. Server-side:
    • The server receives this request, processes it (for example, by querying a database or reading a file), and returns the appropriate response (such as JSON data or HTML) back to the browser.
  3. Response Handling (Browser):
    • The client (browser) receives the response and updates parts of the webpage dynamically, without reloading the entire page.

jquery

in main.js when data is sent to php file, livesearch.php it is the value of the variable textInput. You later extract the value through the key input inside the livesearch.php

Note 1: You access these key throuhg php superglobals, e.i $_GET, $_POST and so on
Note 2: the key input is actually set/defined in $_POST[‘input’] so check for an empty string

The function success and error is called (event handler. The parameter(named data in this instance) received in the function contains the entire output. In this case, everything that is echo:ed

Ajax Live Search - Mysql

index.html

<!DOCTYPE html>
<html lang=”en”>
<head>
<meta charset=”UTF-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
<script src=”https://code.jquery.com/jquery-3.7.1.min.js” integrity=”sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=” crossorigin=”anonymous”></script>
<title>AJAX with Fetch API</title>
</head>
<body>
<h1>AJAX Requests – retrieve data From db</h1>
<div class=”container-db-ouput”>
<input type=”text” name=”inputdb” id=”txtidmysql”>
<button id=”btnmysql”>SQL search</button>
</div>
<div id=”result-sql-container”></div>
<hr>
<h1>Fetching starwars data</h1>
<div class=”container-input-form”>
<label for=”star_wars”>Get from id</label>
<input type=”text” name=”star_wars” id=”txt-star-wars”>
<input type=”button” value=”Get person” id=”btn-star-wars”>
</div>
<div id=”container-starwars-result”></div>
<script src=”./js/main.js”></script>
</html>

main.js

console.log(“Welcome to console”);
$(document).ready(function() {
$(“#txtidmysql”).keyup(function(){
var textInput =$(“#txtidmysql”).val();
console.log(“Key pressed – value in textbox is: ” + textInput);
$.ajax({
url:”http://localhost:7070/product_db.php”,
method:”POST”,
data: {input:textInput},
success:function(data){
$(“#result-sql-container”).html(data);
console.log(“Fetching done”);
},
error:function(jqXHR, textStatus, errorThrown) {
// Handle errors
console.error(‘Error:’, textStatus, errorThrown);
}
});
});
$(“#btn-star-wars”).click(function() {
var contentTextField =$(“#txt-star-wars”).val();
var baseUrl =”https://swapi.dev/api/”;
var endpoint =”people/”+ contentTextField;
var fullUrl = baseUrl + endpoint;
$.ajax({
url: fullUrl,
method:”GET”,
success:function(data){
console.log(data);
var htmlContent;
var countCharacter = data.count;
var htmlContent;
if (countCharacter >=1)
{
htmlContent = ” <table><tr><th>Name</th><th>Gender</th><th>Born</th></tr>”;
var allCharacters = data.results;
allCharacters.forEach(element => {
htmlContent += “<tr><td>” + element.name + “</td>” + “<td>” + element.gender + “</td>” + “<td>” + element.birth_year + “</td>”;
});
htmlContent += “</table>”;
}
else {
htmlContent = “No matching records”;
}
$(“#container-starwars-result”).html(htmlContent);
}
});
});
});

products_db.php

<?php
//You may need to install php-mysqli for this to work
// sudo apt install php8.4-mysql php8.3-mysql php8.2-mysql php8.1-mysql php8.0-mysql php7.4-mysql php7.3-mysql php7.2-mysql php7.1-mysql php7.0-mysql php5.6-mysql
//phpinfo();
// Database credentials
$database = “genixcoperation_db”;
$table = “products”;
$user = “pratkvarnen”;
$password = “qwER56zxCV12”;
$host = “localhost”; // Change if your database server is different
$conditionWhere = ”;
//POST request
if ($_SERVER[‘REQUEST_METHOD’] == “POST”)
{
//Extract the values sent
$textvalue=$_POST[‘input’];
//echo “Value recieved is: ” . $textvalue;
$startingLetter=$textvalue;
$conditionWhere=” WHERE title LIKE ‘”.$startingLetter.”%'”;
}
// Create a connection
$connection = new mysqli($host, $user, $password, $database);
// Check connection
if ($connection->connect_error) {
die(“Connection failed: “.$connection->connect_error);
}
// Prepare the SQL query
$sql = “SELECT * FROM $table” . $conditionWhere;
$result = $connection->query($sql);
// Check if there are results and display them
if ($result->num_rows > 0) {
// Output data of each row
echo”<table>”;
echo”<tr><th>SKU</th><th>Title</th><th>Price</th><th>Stock</th><th>Quantity</th><th>BUY</th></tr>”;
while ($row=$result->fetch_assoc()) {
//echo “SKU: ” . $row[“sku”] . ” – Title: ” . $row[“title”] . ” – Price: ” . $row[“price”] . ” – Stock: ” . $row[“stock”] . “<br>”;
echo”<tr><td>”.$row[“sku”] .”</td>”.”<td>”.$row[“title”] .”</td>”.”<td>”.$row[“price”] .”</td>”.”<td>”.$row[“stock”] .”</td>”.”<td>”.'<input type=”number” id=”quantity” name=”quantity” min=”1″ max=”5000″ value=”1″>’.”</td>”.'<td>’.'<button id=”btnquantity”>Add to cart</button>’.'</td>’.”</tr>”;
}
echo”</table>”;
} else {
echo”0 results”;
}
// Close the connection
$connection->close();
?>

Raw html