document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Contador de visitas · PHP + SQLite</title>
  5.     <meta charset="utf-8" />
  6.     <style type="text/css">
  7.         body {margin: 0 auto; padding: 0; text-align: center; min-width: 360px; }
  8.         #contador {display: inline; font: 18px Consolas, monospace; background: #d7d7d7; color: #8c8c8c; border-radius: 5px; padding: 5px 3px; margin-top: 20px;}
  9.     </style>
  10.     <script src="jquery-1.6.1.min.js" type="text/javascript"></script>
  11.     <script type="text/javascript">
  12.         $(document).ready(function(){
  13.             setInterval(function() {
  14.                 $("#quetequema").load("real.php");
  15.                 },1000);
  16.         });
  17.     </script>
  18. </head>
  19. <body>
  20.  
  21.     <!-- aquí se volcará las visitas en tiempo real -->
  22.     <div id="quetequema"></div>
  23.  
  24. </body>
  25. </html>
');