reset.php 200 B

1234567891011121314
  1. <?php
  2. require_once('functions.php');
  3. try {
  4. $db = getConnection();
  5. resetCarsTable($db);
  6. closeConnection($db);
  7. }
  8. catch (PDOException $e) {
  9. print 'Exception : ' . $e->getMessage();
  10. }