Our Servic
We offers a grid-based layout system, with rows and columns, making it easier to design web pages without having to use floats and positioning:
Institutional quality audit
Peer assessment service
Standarde
Grade 6 and Grade 8 Examination
Special needs education
Users Online : 1
// Get the id parameter from the URL
const urlParams = new URLSearchParams(window.location.search);
const id = urlParams.get('id');
// Send an AJAX request to increment the visitor count for the id value
const xhr = new XMLHttpRequest();
xhr.open('POST', 'update_visitor_count.php');
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
xhr.send(`id=${id}`);
// Update the live visitor count on the page
const visitorCountElement = document.getElementById('visitor-count');
setInterval(() => {
fetch(`get_visitor_count.php?id=${id}`)
.then(response => response.text())
.then(count => {
visitorCountElement.textContent = count;
});
}, 5000); // Update every 5 seconds