Advertisement
noam76

fetch_data.php

May 13th, 2023
859
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. <?php
  2. require_once 'config.php';
  3.  
  4. // Fetch data from the "data_storage" table
  5. $stmt = $conn->prepare("SELECT register_data, created_at FROM data_storage");
  6. $stmt->execute();
  7. $data = $stmt->fetchAll(PDO::FETCH_ASSOC);
  8.  
  9. echo json_encode($data);
  10. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement