Commit 9815f132 authored by Shoaib Ahmed's avatar Shoaib Ahmed

Adding index.html and db dunmp file for project

parent 1c632562
<!doctype html>
<html>
<head>
<title>Sample 3 Tier Application</title>
</head>
<body>
<script>
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
// Typical action to be performed when the document is ready:
document.getElementById("php-data").innerHTML = xhttp.responseText;
console.log(xhttp.responseText);
}
};
xhttp.open("GET", "http://localhost/index.php", true);
xhttp.send();
</script>
<h1>This is Sample 3 Tier application, it is calling data from php backend<h1>
<h2 id='php-data'><h2>
</body>
</html>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment