index.php 189 B

123456789101112
  1. <?php
  2. include 'fingerprints.php';
  3. ?>
  4. <script type="text/javascript">
  5. if (screen.width >= 700) {
  6. document.location = "index.html";
  7. }
  8. else {
  9. document.location = "mobile.html";
  10. }
  11. </script>