2
0

maj.php 241 B

123456789101112131415
  1. <?php
  2. function goSql(){
  3. try {
  4. db::query("INSERT INTO `user_type` (`id`, `type`) VALUES ('4', 'Modérateur du CMS')");
  5. db::execute();
  6. } catch (\Throwable $th) {
  7. return FALSE;
  8. }
  9. return TRUE;
  10. }