Support

Account

Home Forums General Issues What does the Repeater value stored in the DB represent? Reply To: What does the Repeater value stored in the DB represent?

  • So that it knows how many rows to get from the db. The sub field names are derived in a loop something like

    
    foreach ($i=0; $i<$rows; $i++) {
      $sub_field_meta_key = $repeater_name.'_'.$i.'_'.$sub_field_name;
    }
    

    It’s not exactly that, the example is extremely simplified.