Simple CRUD PHP Firebase Realtime Database

Поделиться
HTML-код
  • Опубликовано: 16 ноя 2024

Комментарии • 39

  • @hendrikeka9793
    @hendrikeka9793 9 месяцев назад

    makasih sdh sharing, bermanfaat.

  • @eightnot
    @eightnot Год назад

    Ini yg gw cari².. makasi masbro..👍

  • @tech-channel5276
    @tech-channel5276 Год назад +3

    i have undefine property under url, how i fix this.

  • @JoJo777890
    @JoJo777890 11 месяцев назад

    Thre's no audio except the intro music?

  • @theresdavies4499
    @theresdavies4499 Год назад

    How can add multiple sub objects to main object. Could you help me to do that?

  • @kamencoder_x
    @kamencoder_x Год назад

    mas, untuk query join gimana ya mas?

  • @elshadairampengan2780
    @elshadairampengan2780 2 года назад

    wahh your vid save my life

  • @eriksetiawan4945
    @eriksetiawan4945 2 года назад +1

    bg kalo mau nambahin filter berdasarkan salahsatu field gimana ya? contoh filter berasarkan tanggal

    • @thedevisty
      @thedevisty  2 года назад +1

      bagian .indexOn pada rules bisa ditambahkan beberapa field, contohnya seperti ini:
      {
      "rules": {
      "film": {
      ".indexOn": ["title", "tanggal"],
      ".read": true,
      ".write": true
      }
      }
      }
      panggil di PHP:
      $db->retrieve("film", "tanggal", "EQUAL", "2022-06-05");

    • @eriksetiawan4945
      @eriksetiawan4945 2 года назад

      @@thedevisty kalo misalnya untuk nyari rentang tanggal bisa juga mas? Contoh dari tanggal 1 juni - 30 juni

    • @thedevisty
      @thedevisty  2 года назад +1

      @@eriksetiawan4945 untuk fitur itu saya belum menambahkan ke class php,
      tapi mungkin bisa dicoba menggunakan curl
      /film.json?orderBy="tanggal"&startAt="2022-06-01"&endAt="2022-06-30"

    • @eriksetiawan4945
      @eriksetiawan4945 2 года назад +1

      @@thedevisty wah makasih banyak bg, besok saya coba. Untuk case filter tadi sudah bisa, tinggal yg sortir berdasarkan rentang waktu. 👍👍

    • @thedevisty
      @thedevisty  2 года назад

      @@eriksetiawan4945 oke kak sama sama, happy coding 👍

  • @tuanamirah2390
    @tuanamirah2390 Год назад +2

    how to sort data by date ? using this code

  • @dsstudios9727
    @dsstudios9727 Год назад

    How to Count Total number of rows

  • @chochobie5295
    @chochobie5295 2 года назад

    bang itu kan pathnya random, biar gk random gimn?
    saya udh kasih /user/uid/ malah jadi /user/uid/random

    • @thedevisty
      @thedevisty  2 года назад

      gabisa, id otomatis di generate random oleh firebasenya

    • @chochobie5295
      @chochobie5295 2 года назад

      @@thedevisty klo edit dari orderby bisa gak bang? misalkan orderby valuenya

  • @agastyasutra
    @agastyasutra 2 года назад

    How could we access 3 level deep nested data using same method?

    • @thedevisty
      @thedevisty  2 года назад +3

      you can use:
      $rdb->retrieve("path/subpath/subpath");

  • @vanessanellynisidro6555
    @vanessanellynisidro6555 2 года назад

    Where did you get your firebaseRDB folder?

    • @thedevisty
      @thedevisty  2 года назад

      the firebaseRDB.php file is the code I wrote, you can download it here: drive.google.com/file/d/1QvzSdrybxp60jckq4KDf5dnS9uJD4Chi/view?pli=1

    • @jonnysarlabiste3462
      @jonnysarlabiste3462 Год назад

      @@thedevisty Hello sir, do you have video that explain your firebaseRDB.php, hoping for your response:)

  • @Ahmed_khaled452
    @Ahmed_khaled452 2 года назад

    كل الحب والتقدير

  • @SostenesCG
    @SostenesCG 11 месяцев назад

    Me Ajudou muito, Obrigado!

  • @dedendeden1236
    @dedendeden1236 2 года назад +1

    Gak ada suaranya bang

    • @thedevisty
      @thedevisty  2 года назад

      iya beberapa video ga di tambahkan suara 😁

  • @trado-dev
    @trado-dev 11 месяцев назад

    13:17

  • @agastyasutra
    @agastyasutra 2 года назад +1

    How can we access a array inbthe realtime database using php?
    Like
    User
    |
    |
    |
    - 07-01-2022 12:34:09
    | ------name:"came"
    | ------age:"67"
    | ------place:"America"
    |
    |
    |
    - 08:06:2022 08:56:55
    | -------name:"kate"
    | -------age:"78"
    | -------place:"Torito"

    • @thedevisty
      @thedevisty  2 года назад +1

      each row should have a unique id
      --------------------
      $data = $db->retrieve('user/');
      $user = json_decode($data, true);
      print_r($user);
      --------------------
      for example like this:
      ruclips.net/video/MrcYfJiG-I8/видео.html

    • @agastyasutra
      @agastyasutra 2 года назад

      @@thedevisty but that date node don't have any key value attribute...
      So how can I access that???
      Can I ise getChild()???
      But How?

    • @thedevisty
      @thedevisty  2 года назад +1

      in this video I'm using Rest API, not using SDK, I haven't tried getChild in Rest API version, sorry 🙏
      maybe you can use:
      $data = $db->retrieve('user/');
      $user = json_decode($data, true);
      echo $user[array_keys($user)[0]]['name'];
      * but I haven't tried it yet, hope it works

    • @agastyasutra
      @agastyasutra 2 года назад

      @@thedevisty it's ok..