cbe72355fd0600a4685c527fd4ebff9f41525c16bc12e4abf5e1980fdb9c8bdaff1725fb3aa73b19aa32653a3ceada8de0692ee4e8b88418cf6d2c193b8ed3 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. }