noam76

save_data.php

May 13th, 2023
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. <?php
  2. require_once 'config.php';
  3. require_once 'modbus.php';
  4.  
  5. $interval = $_POST['interval']; // Get the user-defined interval from a form
  6.  
  7. // Save the data to the "data_storage" table
  8. $stmt = $conn->prepare("INSERT INTO data_storage (register_data) VALUES (:register_data)");
  9. $stmt->bindParam(':register_data', json_encode($registers));
  10. $stmt->execute();
  11. ?>
Add Comment
Please, Sign In to add comment