Advertisement
Guest User

Untitled

a guest
Feb 17th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. <html>
  2. <head>
  3. <meta charset="UTF-8">
  4. </head>
  5. <title></title>
  6. <body>
  7. <label>Select period</label>
  8. <select class="dropdownX">
  9. <option>Select</option>
  10. <?php
  11. if($stmt=$conn->query("SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_TYPE = 'BASE TABLE' AND TABLE_SCHEMA='$dbname' ORDER BY create_time DESC"))
  12. {
  13. while($r=$stmt->fetch_array(MYSQLI_ASSOC))
  14. {
  15. ?>
  16. <option value="<?php echo $r['TABLE_NAME'] ?>"><?php echo $r['TABLE_NAME'] ?></option>
  17.  
  18. <?php } } ?>
  19.  
  20. </select>
  21. </body>
  22. </html>
  23. <script>
  24. <html>
  25. <head>
  26. <meta charset="UTF-8">
  27. </head>
  28. <title></title>
  29. <body>
  30. $(".dropdownX").on("change", function() {
  31. window.location.href = "?period=" + this.value;
  32. });
  33. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement