Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <title>My Ajax Application</title>
- <script Language=”JavaScript”>
- function getXMLHTTPRequest() {
- try {
- req = new XMLHttpRequest();
- } catch(err1) {
- try {
- req = new ActiveXObject("Msxml2.XMLHTTP");
- } catch (err2) {
- try {
- req = new ActiveXObject("Microsoft.XMLHTTP");
- } catch (err3) {
- req = false;
- }
- }
- }
- return req;
- }
- var http = getXMLHTTPRequest();
- function getServerText() {
- var myurl = 'textserver.php';
- myRand = parseInt(Math.random()*999999999999999);
- var modurl = myurl+"?rand="+myRand;
- http.open("GET", modurl, true);
- http.onreadystatechange = useHttpResponse;
- http.send(null);
- }
- function useHttpResponse() {
- if (http.readyState == 4) {
- if(http.status == 200) {
- var mytext = http.responseText;
- document.getElementById('myPageElement')
- ..innerHTML = mytext;
- }
- } else {
- document. getElementById('myPageElement')
- ..innerHTML = "";
- }
- }
- </script>
- </head>
- <body onLoad="getServerText()">
- Here is the text returned by the server:<br>
- <div id="myPageElement"></div>
- <?php
- $days = array('Monday','Tuesday','Wednesday',
- 'Thursday','Friday','Saturday','Sunday');
- echo "<table border='2'>";
- echo "<tr><th>Day Number</th><th>Day Name</th></tr>";
- for($i=0;$i<7;$i++)
- {
- echo "<tr><td>".$i."</td><td>".$days[$i]."</td></tr>";
- }
- echo "</table>";
- ?>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment