Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
cancle the version of user count
  • Loading branch information
AB3462461320878 authored Oct 22, 2023
1 parent a136171 commit 89881bf
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -361,21 +361,6 @@ <h1 style="text-align: center; color: white; font-family: raleway;">Pictures fro
<div class="Costumer-CC">
<p class="Costumer-message" style="font-weight: bold;">Thank you User Number : <span id="userCount" style="font-weight: bold;">Loading...</span> For visiting Us</p>

<script>
function updateUserCount() {
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
document.getElementById("usercount").textContent = this.responseText;
}
};
xhttp.open("GET", "updateUserCount.php", true);
xhttp.send();
}

updateUserCount();
</script>


</div>
</body>
Expand Down

0 comments on commit 89881bf

Please sign in to comment.